Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HashMultimap (0.18 sec)

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

       */
      public static <K extends @Nullable Object, V extends @Nullable Object> HashMultimap<K, V> create(
          Multimap<? extends K, ? extends V> multimap) {
        return new HashMultimap<>(multimap);
      }
    
      private HashMultimap() {
        this(12, DEFAULT_VALUES_PER_KEY);
      }
    
      private HashMultimap(int expectedKeys, int expectedValuesPerKey) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Mar 06 16:06:58 GMT 2023
    - 5.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/HashMultimap.java

       */
      public static <K extends @Nullable Object, V extends @Nullable Object> HashMultimap<K, V> create(
          Multimap<? extends K, ? extends V> multimap) {
        return new HashMultimap<>(multimap);
      }
    
      private HashMultimap() {
        this(12, DEFAULT_VALUES_PER_KEY);
      }
    
      private HashMultimap(int expectedKeys, int expectedValuesPerKey) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Mar 06 16:06:58 GMT 2023
    - 5.9K bytes
    - Viewed (0)
Back to top