|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ShortDoubleMap | |
---|---|
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 ShortDoubleMap in com.koloboke.collect.map |
---|
Methods in com.koloboke.collect.map that return ShortDoubleMap | |
---|---|
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMap(Consumer<ShortDoubleConsumer> entriesSupplier)
Constructs a new immutable map filled with mappings consumed by the callback within the given closure. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMap(Consumer<ShortDoubleConsumer> entriesSupplier,
int expectedSize)
Constructs a new immutable map filled with mappings consumed by the callback within the given closure. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMap(Iterable<Short> keys,
Iterable<Double> 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. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMap(Iterable<Short> keys,
Iterable<Double> 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. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMap(Map<Short,Double> map)
Constructs a new immutable map with the same mappings as the specified map . |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMap(Map<Short,Double> map1,
Map<Short,Double> map2)
Constructs a new immutable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
Map<Short,Double> map3)
Constructs a new immutable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
Map<Short,Double> map3,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
Map<Short,Double> map3,
Map<Short,Double> map4)
Constructs a new immutable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
Map<Short,Double> map3,
Map<Short,Double> map4,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
Map<Short,Double> map3,
Map<Short,Double> map4,
Map<Short,Double> map5)
Constructs a new immutable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
Map<Short,Double> map3,
Map<Short,Double> map4,
Map<Short,Double> map5,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMap(short[] keys,
double[] 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. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMap(Short[] keys,
Double[] 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. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMap(short[] keys,
double[] 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. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMap(Short[] keys,
Double[] 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. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMapOf(short k1,
double v1)
Constructs a new immutable map of the single specified mapping. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMapOf(short k1,
double v1,
short k2,
double v2)
Constructs a new immutable map of the two specified mappings. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMapOf(short k1,
double v1,
short k2,
double v2,
short k3,
double v3)
Constructs a new immutable map of the three specified mappings. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMapOf(short k1,
double v1,
short k2,
double v2,
short k3,
double v3,
short k4,
double v4)
Constructs a new immutable map of the four specified mappings. |
ShortDoubleMap |
ShortDoubleMapFactory.newImmutableMapOf(short k1,
double v1,
short k2,
double v2,
short k3,
double v3,
short k4,
double v4,
short k5,
double v5)
Constructs a new immutable map of the five specified mappings. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap()
Constructs a new empty mutable map of the default expected size. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap(Consumer<ShortDoubleConsumer> entriesSupplier)
Constructs a new mutable map filled with mappings consumed by the callback within the given closure. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap(Consumer<ShortDoubleConsumer> entriesSupplier,
int expectedSize)
Constructs a new mutable map filled with mappings consumed by the callback within the given closure. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap(int expectedSize)
Constructs a new empty mutable map of the given expected size. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap(Iterable<Short> keys,
Iterable<Double> 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. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap(Iterable<Short> keys,
Iterable<Double> 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. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap(Map<Short,Double> map)
Constructs a new mutable map with the same mappings as the specified map . |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap(Map<Short,Double> map1,
Map<Short,Double> map2)
Constructs a new mutable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
Map<Short,Double> map3)
Constructs a new mutable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
Map<Short,Double> map3,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
Map<Short,Double> map3,
Map<Short,Double> map4)
Constructs a new mutable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
Map<Short,Double> map3,
Map<Short,Double> map4,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
Map<Short,Double> map3,
Map<Short,Double> map4,
Map<Short,Double> map5)
Constructs a new mutable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
Map<Short,Double> map3,
Map<Short,Double> map4,
Map<Short,Double> map5,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap(short[] keys,
double[] 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. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap(Short[] keys,
Double[] 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. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap(short[] keys,
double[] 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. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMap(Short[] keys,
Double[] 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. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMapOf(short k1,
double v1)
Constructs a new mutable map of the single specified mapping. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMapOf(short k1,
double v1,
short k2,
double v2)
Constructs a new mutable map of the two specified mappings. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMapOf(short k1,
double v1,
short k2,
double v2,
short k3,
double v3)
Constructs a new mutable map of the three specified mappings. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMapOf(short k1,
double v1,
short k2,
double v2,
short k3,
double v3,
short k4,
double v4)
Constructs a new mutable map of the four specified mappings. |
ShortDoubleMap |
ShortDoubleMapFactory.newMutableMapOf(short k1,
double v1,
short k2,
double v2,
short k3,
double v3,
short k4,
double v4,
short k5,
double v5)
Constructs a new mutable map of the five specified mappings. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap()
Constructs a new empty updatable map of the default expected size. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap(Consumer<ShortDoubleConsumer> entriesSupplier)
Constructs a new updatable map filled with mappings consumed by the callback within the given closure. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap(Consumer<ShortDoubleConsumer> entriesSupplier,
int expectedSize)
Constructs a new updatable map filled with mappings consumed by the callback within the given closure. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap(int expectedSize)
Constructs a new empty updatable map of the given expected size. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap(Iterable<Short> keys,
Iterable<Double> 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. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap(Iterable<Short> keys,
Iterable<Double> 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. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap(Map<Short,Double> map)
Constructs a new updatable map with the same mappings as the specified map . |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap(Map<Short,Double> map1,
Map<Short,Double> map2)
Constructs a new updatable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
Map<Short,Double> map3)
Constructs a new updatable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
Map<Short,Double> map3,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
Map<Short,Double> map3,
Map<Short,Double> map4)
Constructs a new updatable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
Map<Short,Double> map3,
Map<Short,Double> map4,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
Map<Short,Double> map3,
Map<Short,Double> map4,
Map<Short,Double> map5)
Constructs a new updatable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap(Map<Short,Double> map1,
Map<Short,Double> map2,
Map<Short,Double> map3,
Map<Short,Double> map4,
Map<Short,Double> map5,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap(short[] keys,
double[] 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. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap(Short[] keys,
Double[] 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. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap(short[] keys,
double[] 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. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMap(Short[] keys,
Double[] 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. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMapOf(short k1,
double v1)
Constructs a new updatable map of the single specified mapping. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMapOf(short k1,
double v1,
short k2,
double v2)
Constructs a new updatable map of the two specified mappings. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMapOf(short k1,
double v1,
short k2,
double v2,
short k3,
double v3)
Constructs a new updatable map of the three specified mappings. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMapOf(short k1,
double v1,
short k2,
double v2,
short k3,
double v3,
short k4,
double v4)
Constructs a new updatable map of the four specified mappings. |
ShortDoubleMap |
ShortDoubleMapFactory.newUpdatableMapOf(short k1,
double v1,
short k2,
double v2,
short k3,
double v3,
short k4,
double v4,
short k5,
double v5)
Constructs a new updatable map of the five specified mappings. |
Uses of ShortDoubleMap in com.koloboke.collect.map.hash |
---|
Subinterfaces of ShortDoubleMap in com.koloboke.collect.map.hash | |
---|---|
interface |
HashShortDoubleMap
An interface for ShortDoubleMap s, based on hash tables. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |