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 |
---|---|
void |
IntIntMap.forEach(IntIntConsumer action)
Performs the given
action on each entry in this map until all entries
have been processed or the action throws an Exception . |
void |
IntIntCursor.forEachForward(IntIntConsumer action)
Performs the given action for each entry of the iteration after the cursor in forward
direction until all entries have been processed or the action throws an exception.
|
Modifier and Type | Method and Description |
---|---|
IntIntMap |
IntIntMapFactory.newImmutableMap(Consumer<IntIntConsumer> entriesSupplier)
Constructs a new immutable map filled with mappings consumed by the callback within the given
closure.
|
IntIntMap |
IntIntMapFactory.newImmutableMap(Consumer<IntIntConsumer> entriesSupplier,
int expectedSize)
Constructs a new immutable map filled with mappings consumed by the callback within the given
closure.
|
IntIntMap |
IntIntMapFactory.newMutableMap(Consumer<IntIntConsumer> entriesSupplier)
Constructs a new mutable map filled with mappings consumed by the callback within the given
closure.
|
IntIntMap |
IntIntMapFactory.newMutableMap(Consumer<IntIntConsumer> entriesSupplier,
int expectedSize)
Constructs a new mutable map filled with mappings consumed by the callback within the given
closure.
|
IntIntMap |
IntIntMapFactory.newUpdatableMap(Consumer<IntIntConsumer> entriesSupplier)
Constructs a new updatable map filled with mappings consumed by the callback within the given
closure.
|
IntIntMap |
IntIntMapFactory.newUpdatableMap(Consumer<IntIntConsumer> entriesSupplier,
int expectedSize)
Constructs a new updatable map filled with mappings consumed by the callback within the given
closure.
|
Modifier and Type | Method and Description |
---|---|
HashIntIntMap |
HashIntIntMapFactory.newImmutableMap(Consumer<IntIntConsumer> entriesSupplier) |
static HashIntIntMap |
HashIntIntMaps.newImmutableMap(Consumer<IntIntConsumer> entriesSupplier)
Constructs a new immutable map filled with mappings consumed by the callback within the given
closure.
|
HashIntIntMap |
HashIntIntMapFactory.newImmutableMap(Consumer<IntIntConsumer> entriesSupplier,
int expectedSize) |
static HashIntIntMap |
HashIntIntMaps.newImmutableMap(Consumer<IntIntConsumer> entriesSupplier,
int expectedSize)
Constructs a new immutable map filled with mappings consumed by the callback within the given
closure.
|
HashIntIntMap |
HashIntIntMapFactory.newMutableMap(Consumer<IntIntConsumer> entriesSupplier) |
static HashIntIntMap |
HashIntIntMaps.newMutableMap(Consumer<IntIntConsumer> entriesSupplier)
Constructs a new mutable map filled with mappings consumed by the callback within the given
closure.
|
HashIntIntMap |
HashIntIntMapFactory.newMutableMap(Consumer<IntIntConsumer> entriesSupplier,
int expectedSize) |
static HashIntIntMap |
HashIntIntMaps.newMutableMap(Consumer<IntIntConsumer> entriesSupplier,
int expectedSize)
Constructs a new mutable map filled with mappings consumed by the callback within the given
closure.
|
HashIntIntMap |
HashIntIntMapFactory.newUpdatableMap(Consumer<IntIntConsumer> entriesSupplier) |
static HashIntIntMap |
HashIntIntMaps.newUpdatableMap(Consumer<IntIntConsumer> entriesSupplier)
Constructs a new updatable map filled with mappings consumed by the callback within the given
closure.
|
HashIntIntMap |
HashIntIntMapFactory.newUpdatableMap(Consumer<IntIntConsumer> entriesSupplier,
int expectedSize) |
static HashIntIntMap |
HashIntIntMaps.newUpdatableMap(Consumer<IntIntConsumer> entriesSupplier,
int expectedSize)
Constructs a new updatable map filled with mappings consumed by the callback within the given
closure.
|