Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for standardPollLastEntry (0.07 sec)

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

        }
    
        @Override
        public Entry<E> pollFirstEntry() {
          return standardPollFirstEntry();
        }
    
        @Override
        public Entry<E> pollLastEntry() {
          return standardPollLastEntry();
        }
    
        @Override
        public SortedMultiset<E> subMultiset(
            E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ForwardingSortedMultisetTest.java

        }
    
        @Override
        public Entry<E> pollFirstEntry() {
          return standardPollFirstEntry();
        }
    
        @Override
        public Entry<E> pollLastEntry() {
          return standardPollLastEntry();
        }
    
        @Override
        public SortedMultiset<E> subMultiset(
            E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ForwardingSortedMultiset.java

       *
       * <p>If you override {@link #descendingMultiset()} or {@link #entrySet()}, you may wish to
       * override {@link #pollLastEntry()} to forward to this implementation.
       */
      protected @Nullable Entry<E> standardPollLastEntry() {
        Iterator<Entry<E>> entryIterator = descendingMultiset().entrySet().iterator();
        if (!entryIterator.hasNext()) {
          return null;
        }
        Entry<E> entry = entryIterator.next();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  4. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ForwardingSortedMultiset.java

       *
       * <p>If you override {@link #descendingMultiset()} or {@link #entrySet()}, you may wish to
       * override {@link #pollLastEntry()} to forward to this implementation.
       */
      protected @Nullable Entry<E> standardPollLastEntry() {
        Iterator<Entry<E>> entryIterator = descendingMultiset().entrySet().iterator();
        if (!entryIterator.hasNext()) {
          return null;
        }
        Entry<E> entry = entryIterator.next();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java

        @Override
        public @Nullable Entry<K, V> pollFirstEntry() {
          return standardPollFirstEntry();
        }
    
        @Override
        public @Nullable Entry<K, V> pollLastEntry() {
          return standardPollLastEntry();
        }
    
        @Override
        public NavigableMap<K, V> descendingMap() {
          return new StandardDescendingMap();
        }
    
        @Override
        public NavigableSet<K> navigableKeySet() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java

        @Override
        public @Nullable Entry<K, V> pollFirstEntry() {
          return standardPollFirstEntry();
        }
    
        @Override
        public @Nullable Entry<K, V> pollLastEntry() {
          return standardPollLastEntry();
        }
    
        @Override
        public NavigableMap<K, V> descendingMap() {
          return new StandardDescendingMap();
        }
    
        @Override
        public NavigableSet<K> navigableKeySet() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ForwardingSortedMultiset.java

       *
       * <p>If you override {@link #descendingMultiset()} or {@link #entrySet()}, you may wish to
       * override {@link #pollLastEntry()} to forward to this implementation.
       */
      protected @Nullable Entry<E> standardPollLastEntry() {
        Iterator<Entry<E>> entryIterator = descendingMultiset().entrySet().iterator();
        if (!entryIterator.hasNext()) {
          return null;
        }
        Entry<E> entry = entryIterator.next();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ForwardingNavigableMap.java

       * entrySet} of {@code descendingMap}. If you override {@code descendingMap}, you may wish to
       * override {@code pollFirstEntry} to forward to this implementation.
       */
      protected @Nullable Entry<K, V> standardPollLastEntry() {
        return Iterators.pollNext(descendingMap().entrySet().iterator());
      }
    
      @Override
      public NavigableMap<K, V> descendingMap() {
        return delegate().descendingMap();
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ForwardingNavigableMap.java

       * entrySet} of {@code descendingMap}. If you override {@code descendingMap}, you may wish to
       * override {@code pollFirstEntry} to forward to this implementation.
       */
      protected @Nullable Entry<K, V> standardPollLastEntry() {
        return Iterators.pollNext(descendingMap().entrySet().iterator());
      }
    
      @Override
      public NavigableMap<K, V> descendingMap() {
        return delegate().descendingMap();
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top