- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for sortedDelegate (1.7 sec)
-
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java
* implemented in terms of sortedDelegate (except comparator()). */ ImmutableSortedSet(Comparator<? super E> comparator) { this(Sets.newTreeSet(comparator)); } ImmutableSortedSet(SortedSet<E> sortedDelegate) { super(sortedDelegate); this.sortedDelegate = Collections.unmodifiableSortedSet(sortedDelegate); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 15.5K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java
return ImmutableSortedSet.copyOf(comparator, sortedDelegate.keySet()); } @Override public Comparator<? super K> comparator() { return comparator; } @Override public @Nullable K firstKey() { return sortedDelegate.firstKey(); } @Override public @Nullable K lastKey() { return sortedDelegate.lastKey(); } @Nullable K higher(K k) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 16.1K bytes - Viewed (0)