type internal/abi.FuncType

19 uses

	internal/abi (current package)
		type.go#L329: 			FuncType
		type.go#L419: func (t *Type) FuncType() *FuncType {
		type.go#L423: 	return (*FuncType)(unsafe.Pointer(t))
		type.go#L521: type FuncType struct {
		type.go#L527: func (t *FuncType) In(i int) *Type {
		type.go#L531: func (t *FuncType) NumIn() int {
		type.go#L535: func (t *FuncType) NumOut() int {
		type.go#L539: func (t *FuncType) Out(i int) *Type {
		type.go#L543: func (t *FuncType) InSlice() []*Type {
		type.go#L553: func (t *FuncType) OutSlice() []*Type {
		type.go#L565: func (t *FuncType) IsVariadic() bool {

	internal/reflectlite
		type.go#L110: type funcType = abi.FuncType

	reflect
		type.go#L360: type funcType = abi.FuncType
		type.go#L804: 	tt := (*abi.FuncType)(unsafe.Pointer(t))
		type.go#L812: 	tt := (*abi.FuncType)(unsafe.Pointer(t))
		type.go#L820: 	tt := (*abi.FuncType)(unsafe.Pointer(t))
		type.go#L828: 	tt := (*abi.FuncType)(unsafe.Pointer(t))
		type.go#L836: 	tt := (*abi.FuncType)(unsafe.Pointer(t))

	runtime
		type.go#L246: type functype = abi.FuncType