- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for DescendingImmutableSortedSet (0.11 sec)
-
android/guava/src/com/google/common/collect/ImmutableRangeSet.java
} } throw new AssertionError("impossible"); } return -1; } @Override ImmutableSortedSet<C> createDescendingSet() { return new DescendingImmutableSortedSet<>(this); } @Override boolean isPartialView() { return ranges.isPartialView(); } @Override public String toString() { return ranges.toString();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 27.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableSortedSet.java
if (result == null) { result = descendingSet = createDescendingSet(); result.descendingSet = this; } return result; } // Most classes should implement this as new DescendingImmutableSortedSet<E>(this), // but we push down that implementation because ProGuard can't eliminate it even when it's always // overridden. @GwtIncompatible // NavigableSet
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 36.8K bytes - Viewed (0)