Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for maxUntyped (0.15 sec)

  1. src/cmd/compile/internal/types2/infer.go

    	var maxUntyped map[*TypeParam]Type // lazily allocated (we may not need it)
    	for _, index := range untyped {
    		tpar := params.At(index).typ.(*TypeParam) // is type parameter (no alias) by construction of untyped
    		if u.at(tpar) == nil {
    			arg := args[index] // arg corresponding to tpar
    			if maxUntyped == nil {
    				maxUntyped = make(map[*TypeParam]Type)
    			}
    			max := maxUntyped[tpar]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  2. src/go/types/infer.go

    	var maxUntyped map[*TypeParam]Type // lazily allocated (we may not need it)
    	for _, index := range untyped {
    		tpar := params.At(index).typ.(*TypeParam) // is type parameter (no alias) by construction of untyped
    		if u.at(tpar) == nil {
    			arg := args[index] // arg corresponding to tpar
    			if maxUntyped == nil {
    				maxUntyped = make(map[*TypeParam]Type)
    			}
    			max := maxUntyped[tpar]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/const.go

    	if !force {
    		return l, r
    	}
    
    	// Can't mix nil with anything untyped.
    	if ir.IsNil(l) || ir.IsNil(r) {
    		return l, r
    	}
    	t := defaultType(mixUntyped(l.Type(), r.Type()))
    	l = convlit(l, t)
    	r = convlit(r, t)
    	return l, r
    }
    
    func mixUntyped(t1, t2 *types.Type) *types.Type {
    	if t1 == t2 {
    		return t1
    	}
    
    	rank := func(t *types.Type) int {
    		switch t {
    		case types.UntypedInt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/expr.go

    			base.Errorf("invalid operation: %v (mismatched types %v and %v)", n, l.Type(), r.Type())
    			return l, r, nil
    		}
    	}
    
    	if t.Kind() == types.TIDEAL {
    		t = mixUntyped(l.Type(), r.Type())
    	}
    	if dt := defaultType(t); !okfor[op][dt.Kind()] {
    		base.Errorf("invalid operation: %v (operator %v not defined on %s)", n, op, typekind(t))
    		return l, r, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top