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