Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for containsAll (0.17 sec)

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

          public boolean contains(@CheckForNull Object object) {
            return set1.contains(object) && set2.contains(object);
          }
    
          @Override
          public boolean containsAll(Collection<?> collection) {
            return set1.containsAll(collection) && set2.containsAll(collection);
          }
        };
      }
    
      /**
       * Returns an unmodifiable <b>view</b> of the difference of two sets. The returned set contains
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 77.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Synchronized.java

          synchronized (mutex) {
            return delegate().contains(o);
          }
        }
    
        @Override
        public boolean containsAll(Collection<?> c) {
          synchronized (mutex) {
            return delegate().containsAll(c);
          }
        }
    
        @Override
        public boolean isEmpty() {
          synchronized (mutex) {
            return delegate().isEmpty();
          }
        }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 53.4K bytes
    - Viewed (0)
Back to top