Package | Description |
---|---|
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. |
Modifier and Type | Method and Description |
---|---|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMap(Consumer<FloatDoubleConsumer> entriesSupplier)
Constructs a new immutable map filled with mappings consumed by the callback within the given
closure.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMap(Consumer<FloatDoubleConsumer> entriesSupplier,
int expectedSize)
Constructs a new immutable map filled with mappings consumed by the callback within the given
closure.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMap(float[] keys,
double[] values)
Constructs a new immutable map with the given mappings, i.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMap(Float[] keys,
Double[] values)
Constructs a new immutable map with the given mappings, i.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMap(float[] keys,
double[] values,
int expectedSize)
Constructs a new immutable map with the given mappings, i.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMap(Float[] keys,
Double[] values,
int expectedSize)
Constructs a new immutable map with the given mappings, i.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMap(Iterable<Float> keys,
Iterable<Double> values)
Constructs a new immutable map with the given mappings, i.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMap(Iterable<Float> keys,
Iterable<Double> values,
int expectedSize)
Constructs a new immutable map with the given mappings, i.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMap(Map<Float,Double> map)
Constructs a new immutable map with the same mappings as the specified
map . |
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMap(Map<Float,Double> map1,
Map<Float,Double> map2)
Constructs a new immutable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
Map<Float,Double> map3)
Constructs a new immutable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
Map<Float,Double> map3,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
Map<Float,Double> map3,
Map<Float,Double> map4)
Constructs a new immutable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
Map<Float,Double> map3,
Map<Float,Double> map4,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
Map<Float,Double> map3,
Map<Float,Double> map4,
Map<Float,Double> map5)
Constructs a new immutable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
Map<Float,Double> map3,
Map<Float,Double> map4,
Map<Float,Double> map5,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMapOf(float k1,
double v1)
Constructs a new immutable map of the single specified mapping.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMapOf(float k1,
double v1,
float k2,
double v2)
Constructs a new immutable map of the two specified mappings.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMapOf(float k1,
double v1,
float k2,
double v2,
float k3,
double v3)
Constructs a new immutable map of the three specified mappings.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMapOf(float k1,
double v1,
float k2,
double v2,
float k3,
double v3,
float k4,
double v4)
Constructs a new immutable map of the four specified mappings.
|
FloatDoubleMap |
FloatDoubleMapFactory.newImmutableMapOf(float k1,
double v1,
float k2,
double v2,
float k3,
double v3,
float k4,
double v4,
float k5,
double v5)
Constructs a new immutable map of the five specified mappings.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap()
Constructs a new empty mutable map of the default expected size.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap(Consumer<FloatDoubleConsumer> entriesSupplier)
Constructs a new mutable map filled with mappings consumed by the callback within the given
closure.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap(Consumer<FloatDoubleConsumer> entriesSupplier,
int expectedSize)
Constructs a new mutable map filled with mappings consumed by the callback within the given
closure.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap(float[] keys,
double[] values)
Constructs a new mutable map with the given mappings, i.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap(Float[] keys,
Double[] values)
Constructs a new mutable map with the given mappings, i.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap(float[] keys,
double[] values,
int expectedSize)
Constructs a new mutable map with the given mappings, i.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap(Float[] keys,
Double[] values,
int expectedSize)
Constructs a new mutable map with the given mappings, i.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap(int expectedSize)
Constructs a new empty mutable map of the given expected size.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap(Iterable<Float> keys,
Iterable<Double> values)
Constructs a new mutable map with the given mappings, i.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap(Iterable<Float> keys,
Iterable<Double> values,
int expectedSize)
Constructs a new mutable map with the given mappings, i.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap(Map<Float,Double> map)
Constructs a new mutable map with the same mappings as the specified
map . |
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap(Map<Float,Double> map1,
Map<Float,Double> map2)
Constructs a new mutable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
Map<Float,Double> map3)
Constructs a new mutable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
Map<Float,Double> map3,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
Map<Float,Double> map3,
Map<Float,Double> map4)
Constructs a new mutable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
Map<Float,Double> map3,
Map<Float,Double> map4,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
Map<Float,Double> map3,
Map<Float,Double> map4,
Map<Float,Double> map5)
Constructs a new mutable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
Map<Float,Double> map3,
Map<Float,Double> map4,
Map<Float,Double> map5,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMapOf(float k1,
double v1)
Constructs a new mutable map of the single specified mapping.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMapOf(float k1,
double v1,
float k2,
double v2)
Constructs a new mutable map of the two specified mappings.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMapOf(float k1,
double v1,
float k2,
double v2,
float k3,
double v3)
Constructs a new mutable map of the three specified mappings.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMapOf(float k1,
double v1,
float k2,
double v2,
float k3,
double v3,
float k4,
double v4)
Constructs a new mutable map of the four specified mappings.
|
FloatDoubleMap |
FloatDoubleMapFactory.newMutableMapOf(float k1,
double v1,
float k2,
double v2,
float k3,
double v3,
float k4,
double v4,
float k5,
double v5)
Constructs a new mutable map of the five specified mappings.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap()
Constructs a new empty updatable map of the default expected size.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap(Consumer<FloatDoubleConsumer> entriesSupplier)
Constructs a new updatable map filled with mappings consumed by the callback within the given
closure.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap(Consumer<FloatDoubleConsumer> entriesSupplier,
int expectedSize)
Constructs a new updatable map filled with mappings consumed by the callback within the given
closure.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap(float[] keys,
double[] values)
Constructs a new updatable map with the given mappings, i.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap(Float[] keys,
Double[] values)
Constructs a new updatable map with the given mappings, i.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap(float[] keys,
double[] values,
int expectedSize)
Constructs a new updatable map with the given mappings, i.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap(Float[] keys,
Double[] values,
int expectedSize)
Constructs a new updatable map with the given mappings, i.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap(int expectedSize)
Constructs a new empty updatable map of the given expected size.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap(Iterable<Float> keys,
Iterable<Double> values)
Constructs a new updatable map with the given mappings, i.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap(Iterable<Float> keys,
Iterable<Double> values,
int expectedSize)
Constructs a new updatable map with the given mappings, i.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap(Map<Float,Double> map)
Constructs a new updatable map with the same mappings as the specified
map . |
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap(Map<Float,Double> map1,
Map<Float,Double> map2)
Constructs a new updatable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
Map<Float,Double> map3)
Constructs a new updatable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
Map<Float,Double> map3,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
Map<Float,Double> map3,
Map<Float,Double> map4)
Constructs a new updatable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
Map<Float,Double> map3,
Map<Float,Double> map4,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
Map<Float,Double> map3,
Map<Float,Double> map4,
Map<Float,Double> map5)
Constructs a new updatable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMap(Map<Float,Double> map1,
Map<Float,Double> map2,
Map<Float,Double> map3,
Map<Float,Double> map4,
Map<Float,Double> map5,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMapOf(float k1,
double v1)
Constructs a new updatable map of the single specified mapping.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMapOf(float k1,
double v1,
float k2,
double v2)
Constructs a new updatable map of the two specified mappings.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMapOf(float k1,
double v1,
float k2,
double v2,
float k3,
double v3)
Constructs a new updatable map of the three specified mappings.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMapOf(float k1,
double v1,
float k2,
double v2,
float k3,
double v3,
float k4,
double v4)
Constructs a new updatable map of the four specified mappings.
|
FloatDoubleMap |
FloatDoubleMapFactory.newUpdatableMapOf(float k1,
double v1,
float k2,
double v2,
float k3,
double v3,
float k4,
double v4,
float k5,
double v5)
Constructs a new updatable map of the five specified mappings.
|
Modifier and Type | Interface and Description |
---|---|
interface |
HashFloatDoubleMap
An interface for
FloatDoubleMap s, based on hash tables. |