func internal/abi.TypeOf

8 uses

	internal/abi (current package)
		type.go#L178: func TypeOf(a any) *Type {
		type.go#L191: 	if t := TypeOf(v); t != nil {
		type.go#L194: 	return TypeOf((*T)(nil)).Elem() // only for an interface kind

	internal/reflectlite
		type.go#L387: 	return toType(abi.TypeOf(i))

	internal/sync
		hashtriemap.go#L49: 	mapType := abi.TypeOf(m).MapType()

	reflect
		type.go#L1303: 	return toType(abi.TypeOf(i))
		type.go#L1308: 	return abi.TypeOf(i)

	runtime
		mcleanup.go#L80: 	if kind := abi.TypeOf(arg).Kind(); kind == abi.Pointer || kind == abi.UnsafePointer {