- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for ImmutableCollection (0.18 seconds)
-
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"); } /**
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 22 21:07:18 GMT 2025 - 52.9K bytes - Click Count (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>
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 81.6K bytes - Click Count (0)