Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NumIn (0.35 sec)

  1. src/reflect/type.go

    	}
    	tt := (*abi.FuncType)(unsafe.Pointer(t))
    	return toType(tt.InSlice()[i])
    }
    
    func (t *rtype) NumIn() int {
    	if t.Kind() != Func {
    		panic("reflect: NumIn of non-func type " + t.String())
    	}
    	tt := (*abi.FuncType)(unsafe.Pointer(t))
    	return tt.NumIn()
    }
    
    func (t *rtype) NumOut() int {
    	if t.Kind() != Func {
    		panic("reflect: NumOut of non-func type " + t.String())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top