Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for TypeArgs (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/types2/signature.go

    			// as the method."
    			switch T := atyp.(type) {
    			case *Named:
    				// The receiver type may be an instantiated type referred to
    				// by an alias (which cannot have receiver parameters for now).
    				if T.TypeArgs() != nil && sig.RecvTypeParams() == nil {
    					check.errorf(recv, InvalidRecv, "cannot define new methods on instantiated type %s", rtyp)
    					break
    				}
    				if T.obj.pkg != check.pkg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/infer.go

    		})
    
    	case *Map:
    		return w.isParameterized(t.key) || w.isParameterized(t.elem)
    
    	case *Chan:
    		return w.isParameterized(t.elem)
    
    	case *Named:
    		for _, t := range t.TypeArgs().list() {
    			if w.isParameterized(t) {
    				return true
    			}
    		}
    
    	case *TypeParam:
    		return tparamIndex(w.tparams, t) >= 0
    
    	default:
    		panic(fmt.Sprintf("unexpected %T", typ))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  8. src/go/types/unify.go

    		if y := asNamed(y); y != nil {
    			// Check type arguments before origins so they unify
    			// even if the origins don't match; for better error
    			// messages (see go.dev/issue/53692).
    			xargs := x.TypeArgs().list()
    			yargs := y.TypeArgs().list()
    			if len(xargs) != len(yargs) {
    				return false
    			}
    			for i, xarg := range xargs {
    				if !u.nify(xarg, yargs[i], mode, p) {
    					return false
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. src/go/types/infer.go

    		})
    
    	case *Map:
    		return w.isParameterized(t.key) || w.isParameterized(t.elem)
    
    	case *Chan:
    		return w.isParameterized(t.elem)
    
    	case *Named:
    		for _, t := range t.TypeArgs().list() {
    			if w.isParameterized(t) {
    				return true
    			}
    		}
    
    	case *TypeParam:
    		return tparamIndex(w.tparams, t) >= 0
    
    	default:
    		panic(fmt.Sprintf("unexpected %T", typ))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/unify.go

    		if y := asNamed(y); y != nil {
    			// Check type arguments before origins so they unify
    			// even if the origins don't match; for better error
    			// messages (see go.dev/issue/53692).
    			xargs := x.TypeArgs().list()
    			yargs := y.TypeArgs().list()
    			if len(xargs) != len(yargs) {
    				return false
    			}
    			for i, xarg := range xargs {
    				if !u.nify(xarg, yargs[i], mode, p) {
    					return false
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top