Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HashBiMapImpl (1.36 sec)

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

        "TreeMapImpl",
        "ImmutableSortedMapImpl",
        "MapMakerWeakKeysWeakValues",
        "MapMakerWeakKeysStrongValues",
        "MapMakerStrongKeysWeakValues",
        "MapMakerStrongKeysStrongValues",
        "HashBiMapImpl",
        "ImmutableBiMapImpl"
      })
      String implName;
    
      MapsImplEnum mapsImpl;
    
      /**
       * A map of contents pre-created before experiment starts to only measure map creation cost. The
    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

          public <K extends Comparable<K>, V> SortedMap<K, V> create(Map<K, V> map) {
            return ImmutableSortedMap.copyOf(map);
          }
        };
      }
    
      enum BiMapImpl implements MapsImplEnum {
        HashBiMapImpl {
          @Override
          public <K extends Comparable<K>, V> BiMap<K, V> create(Map<K, V> map) {
            return HashBiMap.create(map);
          }
        },
        ImmutableBiMapImpl {
          @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