- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for higherKey (0.05 seconds)
-
android/guava/src/com/google/common/collect/Synchronized.java
synchronized (mutex) { return nullableSynchronizedEntry(delegate().higherEntry(key), mutex); } } @Override public @Nullable K higherKey(K key) { synchronized (mutex) { return delegate().higherKey(key); } } @Override public Map.@Nullable Entry<K, V> lastEntry() { synchronized (mutex) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Aug 08 15:11:10 GMT 2025 - 53K bytes - Click Count (0) -
guava/src/com/google/common/collect/Synchronized.java
synchronized (mutex) { return nullableSynchronizedEntry(delegate().higherEntry(key), mutex); } } @Override public @Nullable K higherKey(K key) { synchronized (mutex) { return delegate().higherKey(key); } } @Override public Map.@Nullable Entry<K, V> lastEntry() { synchronized (mutex) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Aug 08 15:11:10 GMT 2025 - 56.9K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableSortedMap.java
} @Override public @Nullable Entry<K, V> higherEntry(K key) { return tailMap(key, false).firstEntry(); } @Override public @Nullable K higherKey(K key) { return keyOrNull(higherEntry(key)); } @Override public @Nullable Entry<K, V> firstEntry() { return isEmpty() ? null : entrySet().asList().get(0); } @Override
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 08 18:10:02 GMT 2026 - 52.1K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableSortedMap.java
} @Override public @Nullable Entry<K, V> higherEntry(K key) { return tailMap(key, false).firstEntry(); } @Override public @Nullable K higherKey(K key) { return keyOrNull(higherEntry(key)); } @Override public @Nullable Entry<K, V> firstEntry() { return isEmpty() ? null : entrySet().asList().get(0); } @Override
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 08 18:10:02 GMT 2026 - 54.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/MapsTest.java
assertEquals(ImmutableSortedMap.of("three", 5), map.subMap("one", false, "tr", true)); assertThat(map.higherKey("one")).isEqualTo("three"); assertThat(map.higherKey("r")).isEqualTo("three"); assertThat(map.ceilingKey("r")).isEqualTo("three"); assertThat(map.ceilingKey("one")).isEqualTo("one");
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 63.2K bytes - Click Count (0)