- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for floorEntry (0.03 sec)
-
guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java
return standardLowerEntry(key); } @Override public @Nullable K lowerKey(K key) { return standardLowerKey(key); } @Override public @Nullable Entry<K, V> floorEntry(K key) { return standardFloorEntry(key); } @Override public @Nullable K floorKey(K key) { return standardFloorKey(key); } @Override
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Dec 16 03:23:31 UTC 2025 - 9.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/MapsTest.java
} { Entry<Integer, String> entry = unmod.lowerEntry(1); assertThat(entry).isNull(); } { Entry<Integer, String> entry = unmod.floorEntry(2); assertThrows(UnsupportedOperationException.class, () -> entry.setValue("four")); } { Entry<Integer, String> entry = unmod.ceilingEntry(2);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/MapsTest.java
} { Entry<Integer, String> entry = unmod.lowerEntry(1); assertThat(entry).isNull(); } { Entry<Integer, String> entry = unmod.floorEntry(2); assertThrows(UnsupportedOperationException.class, () -> entry.setValue("four")); } { Entry<Integer, String> entry = unmod.ceilingEntry(2);Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 22:56:33 UTC 2025 - 65K bytes - Viewed (0)