Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for pollAsMapEntry (0.14 sec)

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

        public @Nullable Entry<K, Collection<V>> pollFirstEntry() {
          return pollAsMapEntry(entrySet().iterator());
        }
    
        @Override
        public @Nullable Entry<K, Collection<V>> pollLastEntry() {
          return pollAsMapEntry(descendingMap().entrySet().iterator());
        }
    
        @Nullable Entry<K, Collection<V>> pollAsMapEntry(
            Iterator<Entry<K, Collection<V>>> entryIterator) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Nov 17 22:50:48 UTC 2025
    - 48.4K bytes
    - Viewed (0)
Back to top