Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for standardIsEmpty (0.05 sec)

  1. guava/src/com/google/common/collect/ForwardingMap.java

       * #entrySet}. If you override {@link #entrySet}, you may wish to override {@link #isEmpty} to
       * forward to this implementation.
       *
       * @since 7.0
       */
      protected boolean standardIsEmpty() {
        return !entrySet().iterator().hasNext();
      }
    
      /**
       * A sensible definition of {@link #equals} in terms of the {@code equals} method of {@link
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 17:32:30 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ForwardingMultisetTest.java

        }
    
        @Override
        public Iterator<T> iterator() {
          return standardIterator();
        }
    
        @Override
        public boolean isEmpty() {
          return standardIsEmpty();
        }
    
        @Override
        public int size() {
          return standardSize();
        }
      }
    
      @AndroidIncompatible // test-suite builders
      public static Test suite() {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 20:34:52 UTC 2025
    - 11.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ForwardingMap.java

       * #entrySet}. If you override {@link #entrySet}, you may wish to override {@link #isEmpty} to
       * forward to this implementation.
       *
       * @since 7.0
       */
      protected boolean standardIsEmpty() {
        return !entrySet().iterator().hasNext();
      }
    
      /**
       * A sensible definition of {@link #equals} in terms of the {@code equals} method of {@link
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 17:32:30 UTC 2025
    - 9.8K bytes
    - Viewed (0)
Back to top