Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HashMapImpl (1.51 sec)

  1. android/guava-tests/benchmark/com/google/common/collect/MapsMemoryBenchmark.java

    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/BenchmarkHelpers.java

          }
        };
    
        abstract <K extends Comparable<K>, V extends Comparable<V>> SetMultimap<K, V> create(
            Multimap<K, V> contents);
      }
    
      public enum MapImpl implements MapsImplEnum {
        HashMapImpl {
          @Override
          public <K extends Comparable<K>, V> Map<K, V> create(Map<K, V> map) {
            return new HashMap<>(map);
          }
        },
        LinkedHashMapImpl {
          @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 12.5K bytes
    - Viewed (0)
Back to top