- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for descendingMap (0.04 sec)
-
android/guava-tests/test/com/google/common/collect/MapsTest.java
assertEquals("one", map.floorKey("r")); assertEquals("three", map.floorKey("three")); assertThat(map.descendingMap().entrySet()) .containsExactly(mapEntry("two", 3), mapEntry("three", 5), mapEntry("one", 3)) .inOrder(); assertEquals(map.headMap("three", true), map.descendingMap().tailMap("three", true)); assertThat(map.tailMap("three", false).entrySet()).contains(mapEntry("two", 3));
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 22:56:33 UTC 2025 - 62.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java
} @Override public @Nullable Entry<K, V> pollLastEntry() { return standardPollLastEntry(); } @Override public NavigableMap<K, V> descendingMap() { return new StandardDescendingMap(); } @Override public NavigableSet<K> navigableKeySet() { return new StandardNavigableKeySet(); } @OverrideRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Dec 16 03:23:31 UTC 2025 - 9.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/MapsTest.java
assertEquals("one", map.floorKey("r")); assertEquals("three", map.floorKey("three")); assertThat(map.descendingMap().entrySet()) .containsExactly(mapEntry("two", 3), mapEntry("three", 5), mapEntry("one", 3)) .inOrder(); assertEquals(map.headMap("three", true), map.descendingMap().tailMap("three", true)); assertThat(map.tailMap("three", false).entrySet()).contains(mapEntry("two", 3));
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 22:56:33 UTC 2025 - 65K bytes - Viewed (0)