Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 12 of 12 for createCollection (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. guava/src/com/google/common/collect/ArrayListMultimap.java

                : DEFAULT_VALUES_PER_KEY);
        putAll(multimap);
      }
    
      /**
       * Creates a new, empty {@code ArrayList} to hold the collection of values for an arbitrary key.
       */
      @Override
      List<V> createCollection() {
        return new ArrayList<>(expectedValuesPerKey);
      }
    
      /**
       * Reduces the memory used by this {@code ArrayListMultimap}, if feasible.
       *
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Fri Dec 05 23:15:58 GMT 2025
    - 6.8K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/Multimaps.java

          return createMaybeNavigableKeySet();
        }
    
        @Override
        Map<K, Collection<V>> createAsMap() {
          return createMaybeNavigableAsMap();
        }
    
        @Override
        protected Collection<V> createCollection() {
          return factory.get();
        }
    
        @Override
        <E extends @Nullable Object> Collection<E> unmodifiableCollectionSubclass(
            Collection<E> collection) {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 86.5K bytes
    - Click Count (0)
Back to Top