internal/abi.FuncType.In (method)

9 uses

	internal/abi (current package)
		type.go#L500: func (t *FuncType) In(i int) *Type {

	internal/reflectlite
		type.go#L583: 			if !haveIdenticalType(t.In(i), v.In(i), cmpTags) {

	reflect
		type.go#L1432: 			if !haveIdenticalType(t.In(i), v.In(i), cmpTags) {
		value.go#L451: 		if xt, targ := in[i].Type(), t.In(i); !xt.AssignableTo(toRType(targ)) {
		value.go#L458: 		slice := MakeSlice(toRType(t.In(n)), m, m)
		value.go#L459: 		elem := toRType(t.In(n)).Elem() // FIXME cast to slice type and Elem()
		value.go#L530: 		targ := toRType(t.In(i))