func reflect.TypeFor

23 uses

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

	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]()

	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]()