Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for TypeArgs (0.12 sec)

  1. api/go1.18.txt

    pkg go/types, method (*Interface) MarkImplicit()
    pkg go/types, method (*Named) Origin() *Named
    pkg go/types, method (*Named) SetTypeParams([]*TypeParam)
    pkg go/types, method (*Named) TypeArgs() *TypeList
    pkg go/types, method (*Named) TypeParams() *TypeParamList
    pkg go/types, method (*Signature) RecvTypeParams() *TypeParamList
    pkg go/types, method (*Signature) TypeParams() *TypeParamList
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 13K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/TypeToken.java

        TypeVariable<?>[] typeVars = rawType.getTypeParameters();
        Type[] typeArgs = type.getActualTypeArguments();
        for (int i = 0; i < typeArgs.length; i++) {
          typeArgs[i] = canonicalizeTypeArg(typeVars[i], typeArgs[i]);
        }
        return Types.newParameterizedTypeWithOwner(type.getOwnerType(), rawType, typeArgs);
      }
    
      private static Bounds every(Type[] bounds) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/TypeToken.java

        TypeVariable<?>[] typeVars = rawType.getTypeParameters();
        Type[] typeArgs = type.getActualTypeArguments();
        for (int i = 0; i < typeArgs.length; i++) {
          typeArgs[i] = canonicalizeTypeArg(typeVars[i], typeArgs[i]);
        }
        return Types.newParameterizedTypeWithOwner(type.getOwnerType(), rawType, typeArgs);
      }
    
      private static Bounds every(Type[] bounds) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  4. src/go/types/api.go

    	// expression F(int(1)) to the inferred type arguments [int], and resulting
    	// instantiated *Signature.
    	//
    	// Invariant: Instantiating Uses[id].Type() with Instances[id].TypeArgs
    	// results in an equivalent of Instances[id].Type.
    	Instances map[*ast.Ident]Instance
    
    	// Defs maps identifiers to the objects they define (including
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api.go

    	// expression F(int(1)) to the inferred type arguments [int], and resulting
    	// instantiated *Signature.
    	//
    	// Invariant: Instantiating Uses[id].Type() with Instances[id].TypeArgs
    	// results in an equivalent of Instances[id].Type.
    	Instances map[*syntax.Name]Instance
    
    	// Defs maps identifiers to the objects they define (including
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. api/go1.23.txt

    pkg go/types, method (*Alias) Origin() *Alias #67143
    pkg go/types, method (*Alias) Rhs() Type #66559
    pkg go/types, method (*Alias) SetTypeParams([]*TypeParam) #67143
    pkg go/types, method (*Alias) TypeArgs() *TypeList #67143
    pkg go/types, method (*Alias) TypeParams() *TypeParamList #67143
    pkg go/types, method (*Func) Signature() *Signature #65772
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. src/go/types/predicates.go

    		if y := asNamed(y); y != nil {
    			// check type arguments before origins to match unifier
    			// (for correct source code we need to do all checks so
    			// order doesn't matter)
    			xargs := x.TypeArgs().list()
    			yargs := y.TypeArgs().list()
    			if len(xargs) != len(yargs) {
    				return false
    			}
    			for i, xarg := range xargs {
    				if !Identical(xarg, yargs[i]) {
    					return false
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/predicates.go

    		if y := asNamed(y); y != nil {
    			// check type arguments before origins to match unifier
    			// (for correct source code we need to do all checks so
    			// order doesn't matter)
    			xargs := x.TypeArgs().list()
    			yargs := y.TypeArgs().list()
    			if len(xargs) != len(yargs) {
    				return false
    			}
    			for i, xarg := range xargs {
    				if !Identical(xarg, yargs[i]) {
    					return false
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. src/go/types/mono.go

    			assert(typ.Obj().Pkg() == pkg)
    			flow(w.typeParamVertex(typ), typ)
    
    		case *Named:
    			if src := w.localNamedVertex(pkg, typ.Origin()); src >= 0 {
    				flow(src, typ)
    			}
    
    			targs := typ.TypeArgs()
    			for i := 0; i < targs.Len(); i++ {
    				do(targs.At(i))
    			}
    
    		case *Array:
    			do(typ.Elem())
    		case *Basic:
    			// ok
    		case *Chan:
    			do(typ.Elem())
    		case *Map:
    			do(typ.Key())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/mono.go

    			assert(typ.Obj().Pkg() == pkg)
    			flow(w.typeParamVertex(typ), typ)
    
    		case *Named:
    			if src := w.localNamedVertex(pkg, typ.Origin()); src >= 0 {
    				flow(src, typ)
    			}
    
    			targs := typ.TypeArgs()
    			for i := 0; i < targs.Len(); i++ {
    				do(targs.At(i))
    			}
    
    		case *Array:
    			do(typ.Elem())
    		case *Basic:
    			// ok
    		case *Chan:
    			do(typ.Elem())
    		case *Map:
    			do(typ.Key())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top