- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for wrapList (0.21 sec)
-
guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
*/ Collection<V> wrapCollection(@ParametricNullness K key, Collection<V> collection) { return new WrappedCollection(key, collection, null); } final List<V> wrapList( @ParametricNullness K key, List<V> list, @Nullable WrappedCollection ancestor) { return (list instanceof RandomAccess) ? new RandomAccessWrappedList(key, list, ancestor)
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Nov 17 22:50:48 UTC 2025 - 48.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Multimaps.java
} } @Override Collection<V> wrapCollection(@ParametricNullness K key, Collection<V> collection) { if (collection instanceof List) { return wrapList(key, (List<V>) collection, null); } else if (collection instanceof NavigableSet) { return new WrappedNavigableSet(key, (NavigableSet<V>) collection, null); } else if (collection instanceof SortedSet) {Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 18:35:44 UTC 2025 - 86.5K bytes - Viewed (0)