Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for wrapList (0.07 sec)

  1. 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 Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K bytes
    - Viewed (0)
Back to top