Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for IsComparable (0.14 sec)

  1. src/cmd/compile/internal/types/alg.go

    	return AlgType(t) == ANOALG
    }
    
    // IsComparable reports whether t is a comparable type.
    func IsComparable(t *Type) bool {
    	a := AlgType(t)
    	return a != ANOEQ && a != ANOALG
    }
    
    // IncomparableField returns an incomparable Field of struct Type t, if any.
    func IncomparableField(t *Type) *Field {
    	for _, f := range t.Fields() {
    		if !IsComparable(f.Type) {
    			return f
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 15:30:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/interface.go

    // Empty reports whether t is the empty interface.
    func (t *Interface) Empty() bool { return t.typeSet().IsAll() }
    
    // IsComparable reports whether each type in interface t's type set is comparable.
    func (t *Interface) IsComparable() bool { return t.typeSet().IsComparable(nil) }
    
    // IsMethodSet reports whether the interface t is fully described by its method set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/base/PredicatesTest.java

      @GwtIncompatible // Predicates.instanceOf
      public void testIsInstanceOf_interface() {
        Predicate<@Nullable Object> isComparable = Predicates.instanceOf(Comparable.class);
    
        assertTrue(isComparable.apply(1));
        assertTrue(isComparable.apply(2.0f));
        assertTrue(isComparable.apply(""));
        assertFalse(isComparable.apply(null));
      }
    
      @GwtIncompatible // Predicates.instanceOf
      public void testIsInstanceOf_equality() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/base/PredicatesTest.java

      @GwtIncompatible // Predicates.instanceOf
      public void testIsInstanceOf_interface() {
        Predicate<@Nullable Object> isComparable = Predicates.instanceOf(Comparable.class);
    
        assertTrue(isComparable.apply(1));
        assertTrue(isComparable.apply(2.0f));
        assertTrue(isComparable.apply(""));
        assertFalse(isComparable.apply(null));
      }
    
      @GwtIncompatible // Predicates.instanceOf
      public void testIsInstanceOf_equality() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  5. src/errors/wrap.go

    // compare err and the target and not call [Unwrap] on either.
    func Is(err, target error) bool {
    	if err == nil || target == nil {
    		return err == target
    	}
    
    	isComparable := reflectlite.TypeOf(target).Comparable()
    	return is(err, target, isComparable)
    }
    
    func is(err, target error, targetComparable bool) bool {
    	for {
    		if targetComparable && err == target {
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:04 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/go/types/interface.go

    // Empty reports whether t is the empty interface.
    func (t *Interface) Empty() bool { return t.typeSet().IsAll() }
    
    // IsComparable reports whether each type in interface t's type set is comparable.
    func (t *Interface) IsComparable() bool { return t.typeSet().IsComparable(nil) }
    
    // IsMethodSet reports whether the interface t is fully described by its method
    // set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. src/go/types/typeset.go

    // IsMethodSet reports whether the interface t is fully described by its method set.
    func (s *_TypeSet) IsMethodSet() bool { return !s.comparable && s.terms.isAll() }
    
    // IsComparable reports whether each type in the set is comparable.
    func (s *_TypeSet) IsComparable(seen map[Type]bool) bool {
    	if s.terms.isAll() {
    		return s.comparable
    	}
    	return s.is(func(t *term) bool {
    		return t != nil && comparable(t.typ, false, seen, nil)
    	})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/typeset.go

    // IsMethodSet reports whether the interface t is fully described by its method set.
    func (s *_TypeSet) IsMethodSet() bool { return !s.comparable && s.terms.isAll() }
    
    // IsComparable reports whether each type in the set is comparable.
    func (s *_TypeSet) IsComparable(seen map[Type]bool) bool {
    	if s.terms.isAll() {
    		return s.comparable
    	}
    	return s.is(func(t *term) bool {
    		return t != nil && comparable(t.typ, false, seen, nil)
    	})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/expr.go

    		converted := false
    		if r.Type().Kind() != types.TBLANK {
    			aop, _ = assignOp(l.Type(), r.Type())
    			if aop != ir.OXXX {
    				if r.Type().IsInterface() && !l.Type().IsInterface() && !types.IsComparable(l.Type()) {
    					base.Errorf("invalid operation: %v (operator %v not defined on %s)", n, op, typekind(l.Type()))
    					return l, r, nil
    				}
    
    				types.CalcSize(l.Type())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/stmt.go

    	var nilonly string
    	if t != nil {
    		switch {
    		case t.IsMap():
    			nilonly = "map"
    		case t.Kind() == types.TFUNC:
    			nilonly = "func"
    		case t.IsSlice():
    			nilonly = "slice"
    
    		case !types.IsComparable(t):
    			if t.IsStruct() {
    				base.ErrorfAt(n.Pos(), errors.InvalidExprSwitch, "cannot switch on %L (struct containing %v cannot be compared)", n.Tag, types.IncomparableField(t).Type)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
Back to top