Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for HashSetSupplier (0.06 seconds)

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

        public List<?> get() {
          return new LinkedList<>();
        }
      }
    
      private static final class HashSetSupplier<V extends @Nullable Object>
          implements Supplier<Set<V>>, Serializable {
        private final int expectedValuesPerKey;
    
        HashSetSupplier(int expectedValuesPerKey) {
          this.expectedValuesPerKey = checkNonnegative(expectedValuesPerKey, "expectedValuesPerKey");
        }
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 18K bytes
    - Click Count (0)
Back to Top