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