internal/abi.FuncType.In (method)

11 uses

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

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

	reflect
		type.go#L901: 	y := f.In(0)
		type.go#L929: 	y := f.In(0)
		type.go#L1595: 			if !haveIdenticalType(t.In(i), v.In(i), cmpTags) {
		value.go#L436: 		if xt, targ := in[i].Type(), t.In(i); !xt.AssignableTo(toRType(targ)) {
		value.go#L443: 		slice := MakeSlice(toRType(t.In(n)), m, m)
		value.go#L444: 		elem := toRType(t.In(n)).Elem() // FIXME cast to slice type and Elem()
		value.go#L515: 		targ := toRType(t.In(i))