- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for standardFloorKey (0.07 sec)
-
guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java
} @Override public @Nullable Entry<K, V> floorEntry(K key) { return standardFloorEntry(key); } @Override public @Nullable K floorKey(K key) { return standardFloorKey(key); } @Override public @Nullable Entry<K, V> ceilingEntry(K key) { return standardCeilingEntry(key); } @Override public @Nullable K ceilingKey(K key) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 9.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java
} @Override public @Nullable Entry<K, V> floorEntry(K key) { return standardFloorEntry(key); } @Override public @Nullable K floorKey(K key) { return standardFloorKey(key); } @Override public @Nullable Entry<K, V> ceilingEntry(K key) { return standardCeilingEntry(key); } @Override public @Nullable K ceilingKey(K key) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 9.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingNavigableMap.java
* {@code floorEntry}, you may wish to override {@code floorKey} to forward to this * implementation. */ protected @Nullable K standardFloorKey(@ParametricNullness K key) { return keyOrNull(floorEntry(key)); } @Override public @Nullable Entry<K, V> ceilingEntry(@ParametricNullness K key) { return delegate().ceilingEntry(key); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 14.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingNavigableMap.java
* {@code floorEntry}, you may wish to override {@code floorKey} to forward to this * implementation. */ protected @Nullable K standardFloorKey(@ParametricNullness K key) { return keyOrNull(floorEntry(key)); } @Override public @Nullable Entry<K, V> ceilingEntry(@ParametricNullness K key) { return delegate().ceilingEntry(key); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 14.3K bytes - Viewed (0)