- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for floorKey (0.06 sec)
-
android/guava/src/com/google/common/collect/Synchronized.java
return nullableSynchronizedEntry(delegate().floorEntry(key), mutex); } } @Override @CheckForNull public K floorKey(K key) { synchronized (mutex) { return delegate().floorKey(key); } } @Override public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { synchronized (mutex) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 53.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/Synchronized.java
return nullableSynchronizedEntry(delegate().floorEntry(key), mutex); } } @Override @CheckForNull public K floorKey(K key) { synchronized (mutex) { return delegate().floorKey(key); } } @Override public NavigableMap<K, V> headMap(K toKey, boolean inclusive) { synchronized (mutex) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 57.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSortedMap.java
} @Override @CheckForNull public Entry<K, V> floorEntry(K key) { return headMap(key, true).lastEntry(); } @Override @CheckForNull public K floorKey(K key) { return keyOrNull(floorEntry(key)); } @Override @CheckForNull public Entry<K, V> ceilingEntry(K key) { return tailMap(key, true).firstEntry(); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 50.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableSortedMap.java
} @Override @CheckForNull public Entry<K, V> floorEntry(K key) { return headMap(key, true).lastEntry(); } @Override @CheckForNull public K floorKey(K key) { return keyOrNull(floorEntry(key)); } @Override @CheckForNull public Entry<K, V> ceilingEntry(K key) { return tailMap(key, true).firstEntry(); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 53K bytes - Viewed (0)