Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for IsVariadic (0.21 sec)

  1. src/internal/abi/type.go

    		uadd += unsafe.Sizeof(UncommonType{})
    	}
    	return (*[1 << 17]*Type)(addChecked(unsafe.Pointer(t), uadd, "outCount > 0"))[t.InCount : t.InCount+outCount : t.InCount+outCount]
    }
    
    func (t *FuncType) IsVariadic() bool {
    	return t.OutCount&(1<<15) != 0
    }
    
    type PtrType struct {
    	Type
    	Elem *Type // pointer element (pointed at) type
    }
    
    type StructField struct {
    	Name   Name    // name is always non-empty
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top