- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ImmutableCollection (0.07 sec)
-
android/guava/src/com/google/common/collect/ImmutableSortedMap.java
/** * Returns an immutable collection of the values in this map, sorted by the ordering of the * corresponding keys. */ @Override public ImmutableCollection<V> values() { return valueList; } @Override ImmutableCollection<V> createValues() { throw new AssertionError("should never be called"); } /**
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 21:07:18 UTC 2025 - 52.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Sets.java
* @since 12.0 */ public static <E extends @Nullable Object> NavigableSet<E> unmodifiableNavigableSet( NavigableSet<E> set) { if (set instanceof ImmutableCollection || set instanceof UnmodifiableNavigableSet) { return set; } return new UnmodifiableNavigableSet<>(set); } static final class UnmodifiableNavigableSet<E extends @Nullable Object>
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 18:35:44 UTC 2025 - 81.6K bytes - Viewed (0)