Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for interfaceType (0.23 sec)

  1. src/reflect/value.go

    func methodReceiver(op string, v Value, methodIndex int) (rcvrtype *abi.Type, t *funcType, fn unsafe.Pointer) {
    	i := methodIndex
    	if v.typ().Kind() == abi.Interface {
    		tt := (*interfaceType)(unsafe.Pointer(v.typ()))
    		if uint(i) >= uint(len(tt.Methods)) {
    			panic("reflect: internal error: invalid method index")
    		}
    		m := &tt.Methods[i]
    		if !tt.nameOff(m.Name).IsExported() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    </p>
    
    <pre class="ebnf">
    Type      = TypeName | TypeLit | "(" Type ")" .
    TypeName  = identifier | QualifiedIdent .
    TypeLit   = ArrayType | StructType | PointerType | FunctionType | InterfaceType |
    	    SliceType | MapType | ChannelType .
    </pre>
    
    <p>
    The language <a href="#Predeclared_identifiers">predeclares</a> certain type names.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                List<String> interfaceTypes = new ArrayList<>();
    
                Type superclass = superclassType;
                if (type.isInterface()) {
                    interfaceTypes.add(superclassType.getInternalName());
                    superclass = OBJECT_TYPE;
                }
    
                interfaceTypes.add(GENERATED_SUBCLASS_TYPE.getInternalName());
                interfaceTypes.add(MODEL_OBJECT_TYPE.getInternalName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
Back to top