Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for pollNext (0.29 sec)

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

          return getSortedSetDelegate().higher(v);
        }
    
        @Override
        public @Nullable V pollFirst() {
          return Iterators.pollNext(iterator());
        }
    
        @Override
        public @Nullable V pollLast() {
          return Iterators.pollNext(descendingIterator());
        }
    
        private NavigableSet<V> wrap(NavigableSet<V> wrapped) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ForwardingNavigableMap.java

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

       * entrySet}. If you override {@code entrySet}, you may wish to override {@code pollFirstEntry} to
       * forward to this implementation.
       */
      protected @Nullable Entry<K, V> standardPollFirstEntry() {
        return Iterators.pollNext(entrySet().iterator());
      }
    
      @Override
      public @Nullable Entry<K, V> pollLastEntry() {
        return delegate().pollLastEntry();
      }
    
      /**
    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