|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DoubleShortMap | |
---|---|
com.koloboke.collect.map | Contains interfaces of Map specializations, their factories and cursors. |
com.koloboke.collect.map.hash | Contains interfaces of Map specializations, based on hash tables,
their factories and static factory methods. |
Uses of DoubleShortMap in com.koloboke.collect.map |
---|
Methods in com.koloboke.collect.map that return DoubleShortMap | |
---|---|
DoubleShortMap |
DoubleShortMapFactory.newImmutableMap(Consumer<DoubleShortConsumer> entriesSupplier)
Constructs a new immutable map filled with mappings consumed by the callback within the given closure. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMap(Consumer<DoubleShortConsumer> entriesSupplier,
int expectedSize)
Constructs a new immutable map filled with mappings consumed by the callback within the given closure. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMap(double[] keys,
short[] values)
Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMap(Double[] keys,
Short[] values)
Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMap(double[] keys,
short[] values,
int expectedSize)
Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMap(Double[] keys,
Short[] values,
int expectedSize)
Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMap(Iterable<Double> keys,
Iterable<Short> values)
Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMap(Iterable<Double> keys,
Iterable<Short> values,
int expectedSize)
Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMap(Map<Double,Short> map)
Constructs a new immutable map with the same mappings as the specified map . |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMap(Map<Double,Short> map1,
Map<Double,Short> map2)
Constructs a new immutable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
Map<Double,Short> map3)
Constructs a new immutable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
Map<Double,Short> map3,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
Map<Double,Short> map3,
Map<Double,Short> map4)
Constructs a new immutable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
Map<Double,Short> map3,
Map<Double,Short> map4,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
Map<Double,Short> map3,
Map<Double,Short> map4,
Map<Double,Short> map5)
Constructs a new immutable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
Map<Double,Short> map3,
Map<Double,Short> map4,
Map<Double,Short> map5,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMapOf(double k1,
short v1)
Constructs a new immutable map of the single specified mapping. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMapOf(double k1,
short v1,
double k2,
short v2)
Constructs a new immutable map of the two specified mappings. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMapOf(double k1,
short v1,
double k2,
short v2,
double k3,
short v3)
Constructs a new immutable map of the three specified mappings. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMapOf(double k1,
short v1,
double k2,
short v2,
double k3,
short v3,
double k4,
short v4)
Constructs a new immutable map of the four specified mappings. |
DoubleShortMap |
DoubleShortMapFactory.newImmutableMapOf(double k1,
short v1,
double k2,
short v2,
double k3,
short v3,
double k4,
short v4,
double k5,
short v5)
Constructs a new immutable map of the five specified mappings. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap()
Constructs a new empty mutable map of the default expected size. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap(Consumer<DoubleShortConsumer> entriesSupplier)
Constructs a new mutable map filled with mappings consumed by the callback within the given closure. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap(Consumer<DoubleShortConsumer> entriesSupplier,
int expectedSize)
Constructs a new mutable map filled with mappings consumed by the callback within the given closure. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap(double[] keys,
short[] values)
Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap(Double[] keys,
Short[] values)
Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap(double[] keys,
short[] values,
int expectedSize)
Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap(Double[] keys,
Short[] values,
int expectedSize)
Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap(int expectedSize)
Constructs a new empty mutable map of the given expected size. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap(Iterable<Double> keys,
Iterable<Short> values)
Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap(Iterable<Double> keys,
Iterable<Short> values,
int expectedSize)
Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap(Map<Double,Short> map)
Constructs a new mutable map with the same mappings as the specified map . |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap(Map<Double,Short> map1,
Map<Double,Short> map2)
Constructs a new mutable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
Map<Double,Short> map3)
Constructs a new mutable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
Map<Double,Short> map3,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
Map<Double,Short> map3,
Map<Double,Short> map4)
Constructs a new mutable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
Map<Double,Short> map3,
Map<Double,Short> map4,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
Map<Double,Short> map3,
Map<Double,Short> map4,
Map<Double,Short> map5)
Constructs a new mutable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
Map<Double,Short> map3,
Map<Double,Short> map4,
Map<Double,Short> map5,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMapOf(double k1,
short v1)
Constructs a new mutable map of the single specified mapping. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMapOf(double k1,
short v1,
double k2,
short v2)
Constructs a new mutable map of the two specified mappings. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMapOf(double k1,
short v1,
double k2,
short v2,
double k3,
short v3)
Constructs a new mutable map of the three specified mappings. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMapOf(double k1,
short v1,
double k2,
short v2,
double k3,
short v3,
double k4,
short v4)
Constructs a new mutable map of the four specified mappings. |
DoubleShortMap |
DoubleShortMapFactory.newMutableMapOf(double k1,
short v1,
double k2,
short v2,
double k3,
short v3,
double k4,
short v4,
double k5,
short v5)
Constructs a new mutable map of the five specified mappings. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap()
Constructs a new empty updatable map of the default expected size. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap(Consumer<DoubleShortConsumer> entriesSupplier)
Constructs a new updatable map filled with mappings consumed by the callback within the given closure. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap(Consumer<DoubleShortConsumer> entriesSupplier,
int expectedSize)
Constructs a new updatable map filled with mappings consumed by the callback within the given closure. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap(double[] keys,
short[] values)
Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap(Double[] keys,
Short[] values)
Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap(double[] keys,
short[] values,
int expectedSize)
Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap(Double[] keys,
Short[] values,
int expectedSize)
Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap(int expectedSize)
Constructs a new empty updatable map of the given expected size. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap(Iterable<Double> keys,
Iterable<Short> values)
Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap(Iterable<Double> keys,
Iterable<Short> values,
int expectedSize)
Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap(Map<Double,Short> map)
Constructs a new updatable map with the same mappings as the specified map . |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap(Map<Double,Short> map1,
Map<Double,Short> map2)
Constructs a new updatable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
Map<Double,Short> map3)
Constructs a new updatable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
Map<Double,Short> map3,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
Map<Double,Short> map3,
Map<Double,Short> map4)
Constructs a new updatable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
Map<Double,Short> map3,
Map<Double,Short> map4,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
Map<Double,Short> map3,
Map<Double,Short> map4,
Map<Double,Short> map5)
Constructs a new updatable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMap(Map<Double,Short> map1,
Map<Double,Short> map2,
Map<Double,Short> map3,
Map<Double,Short> map4,
Map<Double,Short> map5,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMapOf(double k1,
short v1)
Constructs a new updatable map of the single specified mapping. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMapOf(double k1,
short v1,
double k2,
short v2)
Constructs a new updatable map of the two specified mappings. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMapOf(double k1,
short v1,
double k2,
short v2,
double k3,
short v3)
Constructs a new updatable map of the three specified mappings. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMapOf(double k1,
short v1,
double k2,
short v2,
double k3,
short v3,
double k4,
short v4)
Constructs a new updatable map of the four specified mappings. |
DoubleShortMap |
DoubleShortMapFactory.newUpdatableMapOf(double k1,
short v1,
double k2,
short v2,
double k3,
short v3,
double k4,
short v4,
double k5,
short v5)
Constructs a new updatable map of the five specified mappings. |
Uses of DoubleShortMap in com.koloboke.collect.map.hash |
---|
Subinterfaces of DoubleShortMap in com.koloboke.collect.map.hash | |
---|---|
interface |
HashDoubleShortMap
An interface for DoubleShortMap s, based on hash tables. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |