Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for typeOffFor (0.21 sec)

  1. src/reflect/value.go

    			panic("reflect: internal error: invalid method index")
    		}
    		m := &tt.Methods[i]
    		return toRType(typeOffFor(typ, m.Typ))
    	}
    	// Method on concrete type.
    	ms := typ.ExportedMethods()
    	if uint(i) >= uint(len(ms)) {
    		panic("reflect: internal error: invalid method index")
    	}
    	m := ms[i]
    	return toRType(typeOffFor(typ, m.Mtyp))
    }
    
    // CanUint reports whether [Value.Uint] can be used without panicking.
    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