type encoding/gob.gobEncoderType

9 uses

	encoding/gob (current package)
		type.go#L317: type gobEncoderType struct {
		type.go#L321: func newGobEncoderType(name string) *gobEncoderType {
		type.go#L322: 	g := &gobEncoderType{CommonType{Name: name}}
		type.go#L327: func (g *gobEncoderType) safeString(seen map[typeId]bool) string {
		type.go#L331: func (g *gobEncoderType) string() string { return g.Name }
		type.go#L644: 	GobEncoderT      *gobEncoderType
		type.go#L645: 	BinaryMarshalerT *gobEncoderType
		type.go#L646: 	TextMarshalerT   *gobEncoderType
		type.go#L726: 		gt := userType.id().gobType().(*gobEncoderType)