Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for funcLayout (0.12 sec)

  1. src/reflect/type.go

    // the name for possible debugging use.
    func funcLayout(t *funcType, rcvr *abi.Type) (frametype *abi.Type, framePool *sync.Pool, abid abiDesc) {
    	if t.Kind() != abi.Func {
    		panic("reflect: funcLayout of non-func type " + stringFor(&t.Type))
    	}
    	if rcvr != nil && rcvr.Kind() == abi.Interface {
    		panic("reflect: funcLayout with interface receiver " + stringFor(rcvr))
    	}
    	k := layoutKey{t, rcvr}
    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