Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IfaceIndir (0.47 sec)

  1. src/internal/reflectlite/value.go

    	// This repeats typ.Kind() except for method values.
    	// The remaining 23+ bits give a method number for method values.
    	// If flag.kind() != Func, code can assume that flagMethod is unset.
    	// If ifaceIndir(typ), code can assume that flagIndir is set.
    	flag
    
    	// A method value represents a curried method invocation
    	// like r.Read for some receiver r. The typ+val+flag bits describe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. src/internal/abi/type.go

    	return t.TFlag&TFlagNamed != 0
    }
    
    // Pointers reports whether t contains pointers.
    func (t *Type) Pointers() bool { return t.PtrBytes != 0 }
    
    // IfaceIndir reports whether t is stored indirectly in an interface value.
    func (t *Type) IfaceIndir() bool {
    	return t.Kind_&KindDirectIface == 0
    }
    
    // isDirectIface reports whether t is stored directly in an interface value.
    func (t *Type) IsDirectIface() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. src/reflect/abi.go

    // Returns true if the receiver is a pointer.
    func (a *abiSeq) addRcvr(rcvr *abi.Type) (*abiStep, bool) {
    	// The receiver is always one word.
    	a.valueStart = append(a.valueStart, len(a.steps))
    	var ok, ptr bool
    	if rcvr.IfaceIndir() || rcvr.Pointers() {
    		ok = a.assignIntN(0, goarch.PtrSize, 1, 0b1)
    		ptr = true
    	} else {
    		// TODO(mknyszek): Is this case even possible?
    		// The interface data work never contains a non-pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top