Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for descendingKeySet (0.05 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

        @Override
        public @Nullable K ceilingKey(@ParametricNullness K key) {
          return fromMap().ceilingKey(key);
        }
    
        @Override
        public NavigableSet<K> descendingKeySet() {
          return fromMap().descendingKeySet();
        }
    
        @Override
        public NavigableMap<K, V2> descendingMap() {
          return transformEntries(fromMap().descendingMap(), transformer);
        }
    
        @Override
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 23 17:50:58 UTC 2025
    - 157.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/MapsTest.java

        assertThat(map.headMap("two", false).values()).containsExactly(3, 5).inOrder();
        assertThat(map.headMap("two", false).descendingMap().values()).containsExactly(5, 3).inOrder();
        assertThat(map.descendingKeySet()).containsExactly("two", "three", "one").inOrder();
    
        assertEquals(mapEntry("one", 3), map.pollFirstEntry());
        assertEquals(mapEntry("two", 3), map.pollLastEntry());
        assertEquals(1, map.size());
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 22:56:33 UTC 2025
    - 62.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          return new NavigableKeySet(sortedMap());
        }
    
        @Override
        public NavigableSet<K> navigableKeySet() {
          return keySet();
        }
    
        @Override
        public NavigableSet<K> descendingKeySet() {
          return descendingMap().navigableKeySet();
        }
    
        @Override
        public NavigableMap<K, Collection<V>> subMap(
            @ParametricNullness K fromKey, @ParametricNullness K toKey) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Nov 17 22:50:48 UTC 2025
    - 48.4K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/MapsTest.java

        assertThat(map.headMap("two", false).values()).containsExactly(3, 5).inOrder();
        assertThat(map.headMap("two", false).descendingMap().values()).containsExactly(5, 3).inOrder();
        assertThat(map.descendingKeySet()).containsExactly("two", "three", "one").inOrder();
    
        assertEquals(mapEntry("one", 3), map.pollFirstEntry());
        assertEquals(mapEntry("two", 3), map.pollLastEntry());
        assertEquals(1, map.size());
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 22:56:33 UTC 2025
    - 65K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

          }
        }
        return result;
      }
    
      @Override
      public ImmutableSortedSet<K> navigableKeySet() {
        return keySet;
      }
    
      @Override
      public ImmutableSortedSet<K> descendingKeySet() {
        return keySet.descendingSet();
      }
    
      /**
       * Serialized type for all ImmutableSortedMap instances. It captures the logical contents and they
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 21:07:18 UTC 2025
    - 52.9K bytes
    - Viewed (0)
Back to top