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