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