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