Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Minifier (0.09 sec)

  1. src/go/types/unify.go

    	//   [p, q, ...] ➞ [x, y, ...]    mapping from type parameters to types
    	traceInference = false
    )
    
    // A unifier maintains a list of type parameters and
    // corresponding types inferred for each type parameter.
    // A unifier is created by calling newUnifier.
    type unifier struct {
    	// handles maps each type parameter to its inferred type through
    	// an indirection *Type called (inferred type) "handle".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/unify.go

    	//   [p, q, ...] ➞ [x, y, ...]    mapping from type parameters to types
    	traceInference = false
    )
    
    // A unifier maintains a list of type parameters and
    // corresponding types inferred for each type parameter.
    // A unifier is created by calling newUnifier.
    type unifier struct {
    	// handles maps each type parameter to its inferred type through
    	// an indirection *Type called (inferred type) "handle".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/go/types/predicates.go

    	ignoreInvalids bool // if set, identical treats an invalid type as identical to any type
    }
    
    // For changes to this code the corresponding changes should be made to unifier.nify.
    func (c *comparer) identical(x, y Type, p *ifacePair) bool {
    	x = Unalias(x)
    	y = Unalias(y)
    
    	if x == y {
    		return true
    	}
    
    	if c.ignoreInvalids && (!isValid(x) || !isValid(y)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/predicates.go

    	ignoreInvalids bool // if set, identical treats an invalid type as identical to any type
    }
    
    // For changes to this code the corresponding changes should be made to unifier.nify.
    func (c *comparer) identical(x, y Type, p *ifacePair) bool {
    	x = Unalias(x)
    	y = Unalias(y)
    
    	if x == y {
    		return true
    	}
    
    	if c.ignoreInvalids && (!isValid(x) || !isValid(y)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top