func reflect.TypeFor

34 uses

	reflect (current package)
		map_swiss.go#L129: 			Type: TypeFor[uint64](),
		type.go#L2855: func TypeFor[T any]() Type {

	database/sql
		convert.go#L542: var valuerReflectType = reflect.TypeFor[driver.Valuer]()
		sql.go#L3287: 			ci.scanType = reflect.TypeFor[any]()

	database/sql/driver
		types.go#L219: var valuerReflectType = reflect.TypeFor[Valuer]()

	encoding/asn1
		asn1.go#L651: 	bitStringType        = reflect.TypeFor[BitString]()
		asn1.go#L652: 	objectIdentifierType = reflect.TypeFor[ObjectIdentifier]()
		asn1.go#L653: 	enumeratedType       = reflect.TypeFor[Enumerated]()
		asn1.go#L654: 	flagType             = reflect.TypeFor[Flag]()
		asn1.go#L655: 	timeType             = reflect.TypeFor[time.Time]()
		asn1.go#L656: 	rawValueType         = reflect.TypeFor[RawValue]()
		asn1.go#L657: 	rawContentsType      = reflect.TypeFor[RawContent]()
		asn1.go#L658: 	bigIntType           = reflect.TypeFor[*big.Int]()

	encoding/json
		decode.go#L595: var textUnmarshalerType = reflect.TypeFor[encoding.TextUnmarshaler]()
		decode.go#L839: 		return nil, &UnmarshalTypeError{Value: "number " + s, Type: reflect.TypeFor[float64](), Offset: int64(d.off)}
		decode.go#L844: var numberType = reflect.TypeFor[Number]()
		encode.go#L384: 	marshalerType     = reflect.TypeFor[Marshaler]()
		encode.go#L385: 	textMarshalerType = reflect.TypeFor[encoding.TextMarshaler]()
		encode.go#L1074: var isZeroerType = reflect.TypeFor[isZeroer]()

	encoding/xml
		marshal.go#L420: 	marshalerType     = reflect.TypeFor[Marshaler]()
		marshal.go#L421: 	marshalerAttrType = reflect.TypeFor[MarshalerAttr]()
		marshal.go#L422: 	textMarshalerType = reflect.TypeFor[encoding.TextMarshaler]()
		read.go#L307: 	attrType            = reflect.TypeFor[Attr]()
		read.go#L308: 	unmarshalerType     = reflect.TypeFor[Unmarshaler]()
		read.go#L309: 	unmarshalerAttrType = reflect.TypeFor[UnmarshalerAttr]()
		read.go#L310: 	textUnmarshalerType = reflect.TypeFor[encoding.TextUnmarshaler]()
		typeinfo.go#L49: var nameType = reflect.TypeFor[Name]()

	html/template
		content.go#L131: 	errorType       = reflect.TypeFor[error]()
		content.go#L132: 	fmtStringerType = reflect.TypeFor[fmt.Stringer]()
		js.go#L128: var jsonMarshalType = reflect.TypeFor[json.Marshaler]()

	text/template
		exec.go#L97: var missingValReflectType = reflect.TypeFor[missingValType]()
		exec.go#L764: 	errorType        = reflect.TypeFor[error]()
		exec.go#L765: 	fmtStringerType  = reflect.TypeFor[fmt.Stringer]()
		exec.go#L766: 	reflectValueType = reflect.TypeFor[reflect.Value]()