Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for nameOffFor (0.23 sec)

  1. src/reflect/value.go

    	} else {
    		rcvrtype = v.typ()
    		ms := v.typ().ExportedMethods()
    		if uint(i) >= uint(len(ms)) {
    			panic("reflect: internal error: invalid method index")
    		}
    		m := ms[i]
    		if !nameOffFor(v.typ(), m.Name).IsExported() {
    			panic("reflect: " + op + " of unexported method")
    		}
    		ifn := textOffFor(v.typ(), m.Ifn)
    		fn = unsafe.Pointer(&ifn)
    		t = (*funcType)(unsafe.Pointer(typeOffFor(v.typ(), m.Mtyp)))
    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