Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for NumIn (0.04 sec)

  1. src/reflect/value.go

    		fn = *(*unsafe.Pointer)(v.ptr)
    	} else {
    		fn = v.ptr
    	}
    
    	if fn == nil {
    		panic("reflect.Value.Call: call of nil function")
    	}
    
    	isSlice := op == "CallSlice"
    	n := t.NumIn()
    	isVariadic := t.IsVariadic()
    	if isSlice {
    		if !isVariadic {
    			panic("reflect: CallSlice of non-variadic function")
    		}
    		if len(in) < n {
    			panic("reflect: CallSlice with too few input arguments")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg reflect, type Type interface, MethodByName(string) (Method, bool)
    pkg reflect, type Type interface, Name() string
    pkg reflect, type Type interface, NumField() int
    pkg reflect, type Type interface, NumIn() int
    pkg reflect, type Type interface, NumMethod() int
    pkg reflect, type Type interface, NumOut() int
    pkg reflect, type Type interface, Out(int) Type
    pkg reflect, type Type interface, PkgPath() string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top