- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for unmodifiableSortedSet (0.07 sec)
-
android/guava/src/com/google/common/collect/AbstractSortedSetMultimap.java
* limitations under the License. */ package com.google.common.collect; import static com.google.common.collect.Sets.unmodifiableNavigableSet; import static java.util.Collections.unmodifiableSortedSet; import com.google.common.annotations.GwtCompatible; import com.google.common.annotations.GwtIncompatible; import com.google.common.annotations.J2ktIncompatible;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Mar 20 13:05:10 UTC 2025 - 5.5K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/UnmodifiableSortedMultiset.java
} @Override public Comparator<? super E> comparator() { return delegate().comparator(); } @Override SortedSet<E> createElementSet() { return Collections.unmodifiableSortedSet(delegate().elementSet()); } @Override public SortedSet<E> elementSet() { return (SortedSet<E>) super.elementSet(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 3.2K bytes - Viewed (0)