reflect.Type.NumIn (method)

9 uses

	reflect (current package)
		type.go#L201: 	NumIn() int

	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#L115: 	for ; i < implType.NumIn(); i++ {
		go_fn.go#L117: 		if i == implType.NumIn()-1 {

	src.elv.sh/pkg/eval/vals
		struct_map.go#L80: 		if method.PkgPath == "" && method.Type.NumIn() == 1 && method.Type.NumOut() == 1 {

	src.elv.sh/pkg/rpc
		server.go#L286: 		if mtype.NumIn() != 3 {
		server.go#L288: 				log.Printf("rpc.Register: method %q has %d input parameters; needs exactly three\n", mname, mtype.NumIn())