- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for NavigableKeySet (0.05 sec)
-
android/guava/src/com/google/common/collect/ForwardingNavigableMap.java
}; } } @Override public NavigableSet<K> navigableKeySet() { return delegate().navigableKeySet(); } /** * A sensible implementation of {@link NavigableMap#navigableKeySet} in terms of the methods of * this {@code NavigableMap}. In many cases, you may wish to override {@link * ForwardingNavigableMap#navigableKeySet} to forward to this implementation or a subclass * thereof. *Registered: Fri Dec 26 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
}; } } @Override public NavigableSet<K> navigableKeySet() { return delegate().navigableKeySet(); } /** * A sensible implementation of {@link NavigableMap#navigableKeySet} in terms of the methods of * this {@code NavigableMap}. In many cases, you may wish to override {@link * ForwardingNavigableMap#navigableKeySet} to forward to this implementation or a subclass * thereof. *Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 14.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
} @Override NavigableSet<K> createKeySet() { return new NavigableKeySet(sortedMap()); } @Override public NavigableSet<K> navigableKeySet() { return keySet(); } @Override public NavigableSet<K> descendingKeySet() { return descendingMap().navigableKeySet(); } @Override public NavigableMap<K, Collection<V>> subMap(Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Nov 17 22:50:48 UTC 2025 - 48.4K bytes - Viewed (0)