reflect.Type.In (method)

8 uses

	reflect (current package)
		type.go#L185: 	In(i int) Type

	src.elv.sh/pkg/eval
		go_fn.go#L100: 	if i < implType.NumIn() && implType.In(i) == frameType {
		go_fn.go#L104: 	if i < implType.NumIn() && implType.In(i) == rawOptionsType {
		go_fn.go#L108: 	if i < implType.NumIn() && reflect.PtrTo(implType.In(i)).Implements(optionsPtrType) {
		go_fn.go#L112: 		b.options = implType.In(i)
		go_fn.go#L116: 		paramType := implType.In(i)

	src.elv.sh/pkg/rpc
		server.go#L293: 		argType := mtype.In(1)
		server.go#L301: 		replyType := mtype.In(2)