Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for getOrCreateCollection (0.08 seconds)

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

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

          }
        } else if (collection.add(value)) {
          totalSize++;
          return true;
        } else {
          return false;
        }
      }
    
      private Collection<V> getOrCreateCollection(@ParametricNullness K key) {
        Collection<V> collection = map.get(key);
        if (collection == null) {
          collection = createCollection(key);
          map.put(key, collection);
        }
        return collection;
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Nov 17 22:50:48 GMT 2025
    - 48.4K bytes
    - Click Count (0)
Back to Top