Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for standardContains (0.05 sec)

  1. android/guava-tests/test/com/google/common/collect/ForwardingCollectionTest.java

          return standardAddAll(collection);
        }
    
        @Override
        public void clear() {
          standardClear();
        }
    
        @Override
        public boolean contains(Object object) {
          return standardContains(object);
        }
    
        @Override
        public boolean containsAll(Collection<?> collection) {
          return standardContainsAll(collection);
        }
    
        @Override
        public boolean remove(Object object) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 20:34:52 UTC 2025
    - 4.8K bytes
    - Viewed (1)
  2. android/guava/src/com/google/common/collect/ForwardingMultiset.java

       * #count}, you may wish to override {@link #contains} to forward to this implementation.
       *
       * @since 7.0
       */
      @Override
      protected boolean standardContains(@Nullable Object object) {
        return count(object) > 0;
      }
    
      /**
       * A sensible definition of {@link #clear} in terms of the {@code iterator} method of {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top