net.openhft.collect.map.hash
Interface HashDoubleLongMapFactory
- All Superinterfaces:
- DoubleLongMapFactory, HashContainerFactory<HashDoubleLongMapFactory>
public interface HashDoubleLongMapFactory
- extends DoubleLongMapFactory, HashContainerFactory<HashDoubleLongMapFactory>
An immutable factory of HashDoubleLongMaps
- See Also:
HashDoubleLongMap,
HashDoubleLongMaps.getDefaultFactory()
|
Method Summary |
HashDoubleLongMap |
newImmutableMap(Consumer<DoubleLongConsumer> entriesSupplier)
|
HashDoubleLongMap |
newImmutableMap(Consumer<DoubleLongConsumer> entriesSupplier,
int expectedSize)
|
HashDoubleLongMap |
newImmutableMap(double[] keys,
long[] values)
|
HashDoubleLongMap |
newImmutableMap(Double[] keys,
Long[] values)
|
HashDoubleLongMap |
newImmutableMap(double[] keys,
long[] values,
int expectedSize)
|
HashDoubleLongMap |
newImmutableMap(Double[] keys,
Long[] values,
int expectedSize)
|
HashDoubleLongMap |
newImmutableMap(Iterable<Double> keys,
Iterable<Long> values)
|
HashDoubleLongMap |
newImmutableMap(Iterable<Double> keys,
Iterable<Long> values,
int expectedSize)
|
HashDoubleLongMap |
newImmutableMap(Map<Double,Long> map)
|
HashDoubleLongMap |
newImmutableMap(Map<Double,Long> map1,
Map<Double,Long> map2)
|
HashDoubleLongMap |
newImmutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
int expectedSize)
|
HashDoubleLongMap |
newImmutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3)
|
HashDoubleLongMap |
newImmutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
int expectedSize)
|
HashDoubleLongMap |
newImmutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4)
|
HashDoubleLongMap |
newImmutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4,
int expectedSize)
|
HashDoubleLongMap |
newImmutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4,
Map<Double,Long> map5)
|
HashDoubleLongMap |
newImmutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4,
Map<Double,Long> map5,
int expectedSize)
|
HashDoubleLongMap |
newImmutableMapOf(double k1,
long v1)
|
HashDoubleLongMap |
newImmutableMapOf(double k1,
long v1,
double k2,
long v2)
|
HashDoubleLongMap |
newImmutableMapOf(double k1,
long v1,
double k2,
long v2,
double k3,
long v3)
|
HashDoubleLongMap |
newImmutableMapOf(double k1,
long v1,
double k2,
long v2,
double k3,
long v3,
double k4,
long v4)
|
HashDoubleLongMap |
newImmutableMapOf(double k1,
long v1,
double k2,
long v2,
double k3,
long v3,
double k4,
long v4,
double k5,
long v5)
|
HashDoubleLongMap |
newMutableMap()
|
HashDoubleLongMap |
newMutableMap(Consumer<DoubleLongConsumer> entriesSupplier)
|
HashDoubleLongMap |
newMutableMap(Consumer<DoubleLongConsumer> entriesSupplier,
int expectedSize)
|
HashDoubleLongMap |
newMutableMap(double[] keys,
long[] values)
|
HashDoubleLongMap |
newMutableMap(Double[] keys,
Long[] values)
|
HashDoubleLongMap |
newMutableMap(double[] keys,
long[] values,
int expectedSize)
|
HashDoubleLongMap |
newMutableMap(Double[] keys,
Long[] values,
int expectedSize)
|
HashDoubleLongMap |
newMutableMap(int expectedSize)
|
HashDoubleLongMap |
newMutableMap(Iterable<Double> keys,
Iterable<Long> values)
|
HashDoubleLongMap |
newMutableMap(Iterable<Double> keys,
Iterable<Long> values,
int expectedSize)
|
HashDoubleLongMap |
newMutableMap(Map<Double,Long> map)
|
HashDoubleLongMap |
newMutableMap(Map<Double,Long> map1,
Map<Double,Long> map2)
|
HashDoubleLongMap |
newMutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
int expectedSize)
|
HashDoubleLongMap |
newMutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3)
|
HashDoubleLongMap |
newMutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
int expectedSize)
|
HashDoubleLongMap |
newMutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4)
|
HashDoubleLongMap |
newMutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4,
int expectedSize)
|
HashDoubleLongMap |
newMutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4,
Map<Double,Long> map5)
|
HashDoubleLongMap |
newMutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4,
Map<Double,Long> map5,
int expectedSize)
|
HashDoubleLongMap |
newMutableMapOf(double k1,
long v1)
|
HashDoubleLongMap |
newMutableMapOf(double k1,
long v1,
double k2,
long v2)
|
HashDoubleLongMap |
newMutableMapOf(double k1,
long v1,
double k2,
long v2,
double k3,
long v3)
|
HashDoubleLongMap |
newMutableMapOf(double k1,
long v1,
double k2,
long v2,
double k3,
long v3,
double k4,
long v4)
|
HashDoubleLongMap |
newMutableMapOf(double k1,
long v1,
double k2,
long v2,
double k3,
long v3,
double k4,
long v4,
double k5,
long v5)
|
HashDoubleLongMap |
newUpdatableMap()
|
HashDoubleLongMap |
newUpdatableMap(Consumer<DoubleLongConsumer> entriesSupplier)
|
HashDoubleLongMap |
newUpdatableMap(Consumer<DoubleLongConsumer> entriesSupplier,
int expectedSize)
|
HashDoubleLongMap |
newUpdatableMap(double[] keys,
long[] values)
|
HashDoubleLongMap |
newUpdatableMap(Double[] keys,
Long[] values)
|
HashDoubleLongMap |
newUpdatableMap(double[] keys,
long[] values,
int expectedSize)
|
HashDoubleLongMap |
newUpdatableMap(Double[] keys,
Long[] values,
int expectedSize)
|
HashDoubleLongMap |
newUpdatableMap(int expectedSize)
|
HashDoubleLongMap |
newUpdatableMap(Iterable<Double> keys,
Iterable<Long> values)
|
HashDoubleLongMap |
newUpdatableMap(Iterable<Double> keys,
Iterable<Long> values,
int expectedSize)
|
HashDoubleLongMap |
newUpdatableMap(Map<Double,Long> map)
|
HashDoubleLongMap |
newUpdatableMap(Map<Double,Long> map1,
Map<Double,Long> map2)
|
HashDoubleLongMap |
newUpdatableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
int expectedSize)
|
HashDoubleLongMap |
newUpdatableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3)
|
HashDoubleLongMap |
newUpdatableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
int expectedSize)
|
HashDoubleLongMap |
newUpdatableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4)
|
HashDoubleLongMap |
newUpdatableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4,
int expectedSize)
|
HashDoubleLongMap |
newUpdatableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4,
Map<Double,Long> map5)
|
HashDoubleLongMap |
newUpdatableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4,
Map<Double,Long> map5,
int expectedSize)
|
HashDoubleLongMap |
newUpdatableMapOf(double k1,
long v1)
|
HashDoubleLongMap |
newUpdatableMapOf(double k1,
long v1,
double k2,
long v2)
|
HashDoubleLongMap |
newUpdatableMapOf(double k1,
long v1,
double k2,
long v2,
double k3,
long v3)
|
HashDoubleLongMap |
newUpdatableMapOf(double k1,
long v1,
double k2,
long v2,
double k3,
long v3,
double k4,
long v4)
|
HashDoubleLongMap |
newUpdatableMapOf(double k1,
long v1,
double k2,
long v2,
double k3,
long v3,
double k4,
long v4,
double k5,
long v5)
|
HashDoubleLongMapFactory |
withDefaultValue(long defaultValue)
|
withDefaultValue
HashDoubleLongMapFactory withDefaultValue(long defaultValue)
- Specified by:
withDefaultValue in interface DoubleLongMapFactory
- See Also:
DoubleLongMap.defaultValue()
newMutableMap
HashDoubleLongMap newMutableMap()
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMap
HashDoubleLongMap newMutableMap(int expectedSize)
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMap
HashDoubleLongMap newMutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
int expectedSize)
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMap
HashDoubleLongMap newMutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
int expectedSize)
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMap
HashDoubleLongMap newMutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4,
int expectedSize)
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMap
HashDoubleLongMap newMutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4,
Map<Double,Long> map5,
int expectedSize)
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMap
HashDoubleLongMap newMutableMap(Map<Double,Long> map)
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMap
HashDoubleLongMap newMutableMap(Map<Double,Long> map1,
Map<Double,Long> map2)
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMap
HashDoubleLongMap newMutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3)
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMap
HashDoubleLongMap newMutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4)
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMap
HashDoubleLongMap newMutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4,
Map<Double,Long> map5)
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMap
HashDoubleLongMap newMutableMap(Consumer<DoubleLongConsumer> entriesSupplier)
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMap
HashDoubleLongMap newMutableMap(Consumer<DoubleLongConsumer> entriesSupplier,
int expectedSize)
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMap
HashDoubleLongMap newMutableMap(double[] keys,
long[] values)
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMap
HashDoubleLongMap newMutableMap(double[] keys,
long[] values,
int expectedSize)
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMap
HashDoubleLongMap newMutableMap(Double[] keys,
Long[] values)
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMap
HashDoubleLongMap newMutableMap(Double[] keys,
Long[] values,
int expectedSize)
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMap
HashDoubleLongMap newMutableMap(Iterable<Double> keys,
Iterable<Long> values)
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMap
HashDoubleLongMap newMutableMap(Iterable<Double> keys,
Iterable<Long> values,
int expectedSize)
- Specified by:
newMutableMap in interface DoubleLongMapFactory
newMutableMapOf
HashDoubleLongMap newMutableMapOf(double k1,
long v1)
- Specified by:
newMutableMapOf in interface DoubleLongMapFactory
newMutableMapOf
HashDoubleLongMap newMutableMapOf(double k1,
long v1,
double k2,
long v2)
- Specified by:
newMutableMapOf in interface DoubleLongMapFactory
newMutableMapOf
HashDoubleLongMap newMutableMapOf(double k1,
long v1,
double k2,
long v2,
double k3,
long v3)
- Specified by:
newMutableMapOf in interface DoubleLongMapFactory
newMutableMapOf
HashDoubleLongMap newMutableMapOf(double k1,
long v1,
double k2,
long v2,
double k3,
long v3,
double k4,
long v4)
- Specified by:
newMutableMapOf in interface DoubleLongMapFactory
newMutableMapOf
HashDoubleLongMap newMutableMapOf(double k1,
long v1,
double k2,
long v2,
double k3,
long v3,
double k4,
long v4,
double k5,
long v5)
- Specified by:
newMutableMapOf in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap()
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap(int expectedSize)
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
int expectedSize)
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
int expectedSize)
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4,
int expectedSize)
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4,
Map<Double,Long> map5,
int expectedSize)
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap(Map<Double,Long> map)
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap(Map<Double,Long> map1,
Map<Double,Long> map2)
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3)
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4)
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4,
Map<Double,Long> map5)
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap(Consumer<DoubleLongConsumer> entriesSupplier)
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap(Consumer<DoubleLongConsumer> entriesSupplier,
int expectedSize)
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap(double[] keys,
long[] values)
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap(double[] keys,
long[] values,
int expectedSize)
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap(Double[] keys,
Long[] values)
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap(Double[] keys,
Long[] values,
int expectedSize)
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap(Iterable<Double> keys,
Iterable<Long> values)
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMap
HashDoubleLongMap newUpdatableMap(Iterable<Double> keys,
Iterable<Long> values,
int expectedSize)
- Specified by:
newUpdatableMap in interface DoubleLongMapFactory
newUpdatableMapOf
HashDoubleLongMap newUpdatableMapOf(double k1,
long v1)
- Specified by:
newUpdatableMapOf in interface DoubleLongMapFactory
newUpdatableMapOf
HashDoubleLongMap newUpdatableMapOf(double k1,
long v1,
double k2,
long v2)
- Specified by:
newUpdatableMapOf in interface DoubleLongMapFactory
newUpdatableMapOf
HashDoubleLongMap newUpdatableMapOf(double k1,
long v1,
double k2,
long v2,
double k3,
long v3)
- Specified by:
newUpdatableMapOf in interface DoubleLongMapFactory
newUpdatableMapOf
HashDoubleLongMap newUpdatableMapOf(double k1,
long v1,
double k2,
long v2,
double k3,
long v3,
double k4,
long v4)
- Specified by:
newUpdatableMapOf in interface DoubleLongMapFactory
newUpdatableMapOf
HashDoubleLongMap newUpdatableMapOf(double k1,
long v1,
double k2,
long v2,
double k3,
long v3,
double k4,
long v4,
double k5,
long v5)
- Specified by:
newUpdatableMapOf in interface DoubleLongMapFactory
newImmutableMap
HashDoubleLongMap newImmutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
int expectedSize)
- Specified by:
newImmutableMap in interface DoubleLongMapFactory
newImmutableMap
HashDoubleLongMap newImmutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
int expectedSize)
- Specified by:
newImmutableMap in interface DoubleLongMapFactory
newImmutableMap
HashDoubleLongMap newImmutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4,
int expectedSize)
- Specified by:
newImmutableMap in interface DoubleLongMapFactory
newImmutableMap
HashDoubleLongMap newImmutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4,
Map<Double,Long> map5,
int expectedSize)
- Specified by:
newImmutableMap in interface DoubleLongMapFactory
newImmutableMap
HashDoubleLongMap newImmutableMap(Map<Double,Long> map)
- Specified by:
newImmutableMap in interface DoubleLongMapFactory
newImmutableMap
HashDoubleLongMap newImmutableMap(Map<Double,Long> map1,
Map<Double,Long> map2)
- Specified by:
newImmutableMap in interface DoubleLongMapFactory
newImmutableMap
HashDoubleLongMap newImmutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3)
- Specified by:
newImmutableMap in interface DoubleLongMapFactory
newImmutableMap
HashDoubleLongMap newImmutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4)
- Specified by:
newImmutableMap in interface DoubleLongMapFactory
newImmutableMap
HashDoubleLongMap newImmutableMap(Map<Double,Long> map1,
Map<Double,Long> map2,
Map<Double,Long> map3,
Map<Double,Long> map4,
Map<Double,Long> map5)
- Specified by:
newImmutableMap in interface DoubleLongMapFactory
newImmutableMap
HashDoubleLongMap newImmutableMap(Consumer<DoubleLongConsumer> entriesSupplier)
- Specified by:
newImmutableMap in interface DoubleLongMapFactory
newImmutableMap
HashDoubleLongMap newImmutableMap(Consumer<DoubleLongConsumer> entriesSupplier,
int expectedSize)
- Specified by:
newImmutableMap in interface DoubleLongMapFactory
newImmutableMap
HashDoubleLongMap newImmutableMap(double[] keys,
long[] values)
- Specified by:
newImmutableMap in interface DoubleLongMapFactory
newImmutableMap
HashDoubleLongMap newImmutableMap(double[] keys,
long[] values,
int expectedSize)
- Specified by:
newImmutableMap in interface DoubleLongMapFactory
newImmutableMap
HashDoubleLongMap newImmutableMap(Double[] keys,
Long[] values)
- Specified by:
newImmutableMap in interface DoubleLongMapFactory
newImmutableMap
HashDoubleLongMap newImmutableMap(Double[] keys,
Long[] values,
int expectedSize)
- Specified by:
newImmutableMap in interface DoubleLongMapFactory
newImmutableMap
HashDoubleLongMap newImmutableMap(Iterable<Double> keys,
Iterable<Long> values)
- Specified by:
newImmutableMap in interface DoubleLongMapFactory
newImmutableMap
HashDoubleLongMap newImmutableMap(Iterable<Double> keys,
Iterable<Long> values,
int expectedSize)
- Specified by:
newImmutableMap in interface DoubleLongMapFactory
newImmutableMapOf
HashDoubleLongMap newImmutableMapOf(double k1,
long v1)
- Specified by:
newImmutableMapOf in interface DoubleLongMapFactory
newImmutableMapOf
HashDoubleLongMap newImmutableMapOf(double k1,
long v1,
double k2,
long v2)
- Specified by:
newImmutableMapOf in interface DoubleLongMapFactory
newImmutableMapOf
HashDoubleLongMap newImmutableMapOf(double k1,
long v1,
double k2,
long v2,
double k3,
long v3)
- Specified by:
newImmutableMapOf in interface DoubleLongMapFactory
newImmutableMapOf
HashDoubleLongMap newImmutableMapOf(double k1,
long v1,
double k2,
long v2,
double k3,
long v3,
double k4,
long v4)
- Specified by:
newImmutableMapOf in interface DoubleLongMapFactory
newImmutableMapOf
HashDoubleLongMap newImmutableMapOf(double k1,
long v1,
double k2,
long v2,
double k3,
long v3,
double k4,
long v4,
double k5,
long v5)
- Specified by:
newImmutableMapOf in interface DoubleLongMapFactory