func encoding/gob.bootstrapType

16 uses

	encoding/gob (current package)
		type.go#L240: 	tBool      = bootstrapType("bool", (*bool)(nil), 1)
		type.go#L241: 	tInt       = bootstrapType("int", (*int)(nil), 2)
		type.go#L242: 	tUint      = bootstrapType("uint", (*uint)(nil), 3)
		type.go#L243: 	tFloat     = bootstrapType("float", (*float64)(nil), 4)
		type.go#L244: 	tBytes     = bootstrapType("bytes", (*[]byte)(nil), 5)
		type.go#L245: 	tString    = bootstrapType("string", (*string)(nil), 6)
		type.go#L246: 	tComplex   = bootstrapType("complex", (*complex128)(nil), 7)
		type.go#L247: 	tInterface = bootstrapType("interface", (*interface{})(nil), 8)
		type.go#L249: 	tReserved7 = bootstrapType("_reserved1", (*struct{ r7 int })(nil), 9)
		type.go#L250: 	tReserved6 = bootstrapType("_reserved1", (*struct{ r6 int })(nil), 10)
		type.go#L251: 	tReserved5 = bootstrapType("_reserved1", (*struct{ r5 int })(nil), 11)
		type.go#L252: 	tReserved4 = bootstrapType("_reserved1", (*struct{ r4 int })(nil), 12)
		type.go#L253: 	tReserved3 = bootstrapType("_reserved1", (*struct{ r3 int })(nil), 13)
		type.go#L254: 	tReserved2 = bootstrapType("_reserved1", (*struct{ r2 int })(nil), 14)
		type.go#L255: 	tReserved1 = bootstrapType("_reserved1", (*struct{ r1 int })(nil), 15)
		type.go#L614: func bootstrapType(name string, e interface{}, expect typeId) typeId {