Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for CustomListMultimap (0.09 seconds)

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

  1. android/guava/src/com/google/common/collect/Multimaps.java

        return new CustomListMultimap<>(map, factory);
      }
    
      private static final class CustomListMultimap<
              K extends @Nullable Object, V extends @Nullable Object>
          extends AbstractListMultimap<K, V> {
        transient Supplier<? extends List<V>> factory;
    
        CustomListMultimap(Map<K, Collection<V>> map, Supplier<? extends List<V>> factory) {
          super(map);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 86K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/Multimaps.java

        return new CustomListMultimap<>(map, factory);
      }
    
      private static final class CustomListMultimap<
              K extends @Nullable Object, V extends @Nullable Object>
          extends AbstractListMultimap<K, V> {
        transient Supplier<? extends List<V>> factory;
    
        CustomListMultimap(Map<K, Collection<V>> map, Supplier<? extends List<V>> factory) {
          super(map);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 86.3K bytes
    - Click Count (0)
Back to Top