Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for FuncType (0.11 sec)

  1. src/reflect/value.go

    }
    
    var callGC bool // for testing; see TestCallMethodJump and TestCallArgLive
    
    const debugReflectCall = false
    
    func (v Value) call(op string, in []Value) []Value {
    	// Get function pointer, type.
    	t := (*funcType)(unsafe.Pointer(v.typ()))
    	var (
    		fn       unsafe.Pointer
    		rcvr     Value
    		rcvrtype *abi.Type
    	)
    	if v.flag&flagMethod != 0 {
    		rcvr = v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top