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