Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for disjoint (0.06 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

              if (set2.contains(e)) {
                size++;
              }
            }
            return size;
          }
    
          @Override
          public boolean isEmpty() {
            return Collections.disjoint(set2, set1);
          }
    
          @Override
          public boolean contains(@CheckForNull Object object) {
            return set1.contains(object) && set2.contains(object);
          }
    
          @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 78.8K bytes
    - Viewed (0)
Back to top