| Package | Description | 
|---|---|
| com.koloboke.collect.map | Contains interfaces of  Mapspecializations, their factories and cursors. | 
| com.koloboke.collect.map.hash | Contains interfaces of  Mapspecializations, based on hash tables,
 their factories and static factory methods. | 
| Modifier and Type | Method and Description | 
|---|---|
| CharIntMap | CharIntMapFactory. newImmutableMap(char[] keys,
               int[] values)Constructs a new immutable map with the given mappings, i. | 
| CharIntMap | CharIntMapFactory. newImmutableMap(char[] keys,
               int[] values,
               int expectedSize)Constructs a new immutable map with the given mappings, i. | 
| CharIntMap | CharIntMapFactory. newImmutableMap(Character[] keys,
               Integer[] values)Constructs a new immutable map with the given mappings, i. | 
| CharIntMap | CharIntMapFactory. newImmutableMap(Character[] keys,
               Integer[] values,
               int expectedSize)Constructs a new immutable map with the given mappings, i. | 
| CharIntMap | CharIntMapFactory. newImmutableMap(Consumer<CharIntConsumer> entriesSupplier)Constructs a new immutable map filled with mappings consumed by the callback within the given
 closure. | 
| CharIntMap | CharIntMapFactory. newImmutableMap(Consumer<CharIntConsumer> entriesSupplier,
               int expectedSize)Constructs a new immutable map filled with mappings consumed by the callback within the given
 closure. | 
| CharIntMap | CharIntMapFactory. newImmutableMap(Iterable<Character> keys,
               Iterable<Integer> values)Constructs a new immutable map with the given mappings, i. | 
| CharIntMap | CharIntMapFactory. newImmutableMap(Iterable<Character> keys,
               Iterable<Integer> values,
               int expectedSize)Constructs a new immutable map with the given mappings, i. | 
| CharIntMap | CharIntMapFactory. newImmutableMap(Map<Character,Integer> map)Constructs a new immutable map with the same mappings as the specified  map. | 
| CharIntMap | CharIntMapFactory. newImmutableMap(Map<Character,Integer> map1,
               Map<Character,Integer> map2)Constructs a new immutable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newImmutableMap(Map<Character,Integer> map1,
               Map<Character,Integer> map2,
               int expectedSize)Constructs a new immutable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newImmutableMap(Map<Character,Integer> map1,
               Map<Character,Integer> map2,
               Map<Character,Integer> map3)Constructs a new immutable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newImmutableMap(Map<Character,Integer> map1,
               Map<Character,Integer> map2,
               Map<Character,Integer> map3,
               int expectedSize)Constructs a new immutable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newImmutableMap(Map<Character,Integer> map1,
               Map<Character,Integer> map2,
               Map<Character,Integer> map3,
               Map<Character,Integer> map4)Constructs a new immutable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newImmutableMap(Map<Character,Integer> map1,
               Map<Character,Integer> map2,
               Map<Character,Integer> map3,
               Map<Character,Integer> map4,
               int expectedSize)Constructs a new immutable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newImmutableMap(Map<Character,Integer> map1,
               Map<Character,Integer> map2,
               Map<Character,Integer> map3,
               Map<Character,Integer> map4,
               Map<Character,Integer> map5)Constructs a new immutable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newImmutableMap(Map<Character,Integer> map1,
               Map<Character,Integer> map2,
               Map<Character,Integer> map3,
               Map<Character,Integer> map4,
               Map<Character,Integer> map5,
               int expectedSize)Constructs a new immutable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newImmutableMapOf(char k1,
                 int v1)Constructs a new immutable map of the single specified mapping. | 
| CharIntMap | CharIntMapFactory. newImmutableMapOf(char k1,
                 int v1,
                 char k2,
                 int v2)Constructs a new immutable map of the two specified mappings. | 
| CharIntMap | CharIntMapFactory. newImmutableMapOf(char k1,
                 int v1,
                 char k2,
                 int v2,
                 char k3,
                 int v3)Constructs a new immutable map of the three specified mappings. | 
| CharIntMap | CharIntMapFactory. newImmutableMapOf(char k1,
                 int v1,
                 char k2,
                 int v2,
                 char k3,
                 int v3,
                 char k4,
                 int v4)Constructs a new immutable map of the four specified mappings. | 
| CharIntMap | CharIntMapFactory. newImmutableMapOf(char k1,
                 int v1,
                 char k2,
                 int v2,
                 char k3,
                 int v3,
                 char k4,
                 int v4,
                 char k5,
                 int v5)Constructs a new immutable map of the five specified mappings. | 
| CharIntMap | CharIntMapFactory. newMutableMap()Constructs a new empty mutable map of the default expected size. | 
| CharIntMap | CharIntMapFactory. newMutableMap(char[] keys,
             int[] values)Constructs a new mutable map with the given mappings, i. | 
| CharIntMap | CharIntMapFactory. newMutableMap(char[] keys,
             int[] values,
             int expectedSize)Constructs a new mutable map with the given mappings, i. | 
| CharIntMap | CharIntMapFactory. newMutableMap(Character[] keys,
             Integer[] values)Constructs a new mutable map with the given mappings, i. | 
| CharIntMap | CharIntMapFactory. newMutableMap(Character[] keys,
             Integer[] values,
             int expectedSize)Constructs a new mutable map with the given mappings, i. | 
| CharIntMap | CharIntMapFactory. newMutableMap(Consumer<CharIntConsumer> entriesSupplier)Constructs a new mutable map filled with mappings consumed by the callback within the given
 closure. | 
| CharIntMap | CharIntMapFactory. newMutableMap(Consumer<CharIntConsumer> entriesSupplier,
             int expectedSize)Constructs a new mutable map filled with mappings consumed by the callback within the given
 closure. | 
| CharIntMap | CharIntMapFactory. newMutableMap(int expectedSize)Constructs a new empty mutable map of the given expected size. | 
| CharIntMap | CharIntMapFactory. newMutableMap(Iterable<Character> keys,
             Iterable<Integer> values)Constructs a new mutable map with the given mappings, i. | 
| CharIntMap | CharIntMapFactory. newMutableMap(Iterable<Character> keys,
             Iterable<Integer> values,
             int expectedSize)Constructs a new mutable map with the given mappings, i. | 
| CharIntMap | CharIntMapFactory. newMutableMap(Map<Character,Integer> map)Constructs a new mutable map with the same mappings as the specified  map. | 
| CharIntMap | CharIntMapFactory. newMutableMap(Map<Character,Integer> map1,
             Map<Character,Integer> map2)Constructs a new mutable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newMutableMap(Map<Character,Integer> map1,
             Map<Character,Integer> map2,
             int expectedSize)Constructs a new mutable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newMutableMap(Map<Character,Integer> map1,
             Map<Character,Integer> map2,
             Map<Character,Integer> map3)Constructs a new mutable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newMutableMap(Map<Character,Integer> map1,
             Map<Character,Integer> map2,
             Map<Character,Integer> map3,
             int expectedSize)Constructs a new mutable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newMutableMap(Map<Character,Integer> map1,
             Map<Character,Integer> map2,
             Map<Character,Integer> map3,
             Map<Character,Integer> map4)Constructs a new mutable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newMutableMap(Map<Character,Integer> map1,
             Map<Character,Integer> map2,
             Map<Character,Integer> map3,
             Map<Character,Integer> map4,
             int expectedSize)Constructs a new mutable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newMutableMap(Map<Character,Integer> map1,
             Map<Character,Integer> map2,
             Map<Character,Integer> map3,
             Map<Character,Integer> map4,
             Map<Character,Integer> map5)Constructs a new mutable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newMutableMap(Map<Character,Integer> map1,
             Map<Character,Integer> map2,
             Map<Character,Integer> map3,
             Map<Character,Integer> map4,
             Map<Character,Integer> map5,
             int expectedSize)Constructs a new mutable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newMutableMapOf(char k1,
               int v1)Constructs a new mutable map of the single specified mapping. | 
| CharIntMap | CharIntMapFactory. newMutableMapOf(char k1,
               int v1,
               char k2,
               int v2)Constructs a new mutable map of the two specified mappings. | 
| CharIntMap | CharIntMapFactory. newMutableMapOf(char k1,
               int v1,
               char k2,
               int v2,
               char k3,
               int v3)Constructs a new mutable map of the three specified mappings. | 
| CharIntMap | CharIntMapFactory. newMutableMapOf(char k1,
               int v1,
               char k2,
               int v2,
               char k3,
               int v3,
               char k4,
               int v4)Constructs a new mutable map of the four specified mappings. | 
| CharIntMap | CharIntMapFactory. newMutableMapOf(char k1,
               int v1,
               char k2,
               int v2,
               char k3,
               int v3,
               char k4,
               int v4,
               char k5,
               int v5)Constructs a new mutable map of the five specified mappings. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap()Constructs a new empty updatable map of the default expected size. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap(char[] keys,
               int[] values)Constructs a new updatable map with the given mappings, i. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap(char[] keys,
               int[] values,
               int expectedSize)Constructs a new updatable map with the given mappings, i. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap(Character[] keys,
               Integer[] values)Constructs a new updatable map with the given mappings, i. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap(Character[] keys,
               Integer[] values,
               int expectedSize)Constructs a new updatable map with the given mappings, i. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap(Consumer<CharIntConsumer> entriesSupplier)Constructs a new updatable map filled with mappings consumed by the callback within the given
 closure. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap(Consumer<CharIntConsumer> entriesSupplier,
               int expectedSize)Constructs a new updatable map filled with mappings consumed by the callback within the given
 closure. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap(int expectedSize)Constructs a new empty updatable map of the given expected size. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap(Iterable<Character> keys,
               Iterable<Integer> values)Constructs a new updatable map with the given mappings, i. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap(Iterable<Character> keys,
               Iterable<Integer> values,
               int expectedSize)Constructs a new updatable map with the given mappings, i. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap(Map<Character,Integer> map)Constructs a new updatable map with the same mappings as the specified  map. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap(Map<Character,Integer> map1,
               Map<Character,Integer> map2)Constructs a new updatable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap(Map<Character,Integer> map1,
               Map<Character,Integer> map2,
               int expectedSize)Constructs a new updatable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap(Map<Character,Integer> map1,
               Map<Character,Integer> map2,
               Map<Character,Integer> map3)Constructs a new updatable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap(Map<Character,Integer> map1,
               Map<Character,Integer> map2,
               Map<Character,Integer> map3,
               int expectedSize)Constructs a new updatable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap(Map<Character,Integer> map1,
               Map<Character,Integer> map2,
               Map<Character,Integer> map3,
               Map<Character,Integer> map4)Constructs a new updatable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap(Map<Character,Integer> map1,
               Map<Character,Integer> map2,
               Map<Character,Integer> map3,
               Map<Character,Integer> map4,
               int expectedSize)Constructs a new updatable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap(Map<Character,Integer> map1,
               Map<Character,Integer> map2,
               Map<Character,Integer> map3,
               Map<Character,Integer> map4,
               Map<Character,Integer> map5)Constructs a new updatable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newUpdatableMap(Map<Character,Integer> map1,
               Map<Character,Integer> map2,
               Map<Character,Integer> map3,
               Map<Character,Integer> map4,
               Map<Character,Integer> map5,
               int expectedSize)Constructs a new updatable map which merge the mappings of the specified maps. | 
| CharIntMap | CharIntMapFactory. newUpdatableMapOf(char k1,
                 int v1)Constructs a new updatable map of the single specified mapping. | 
| CharIntMap | CharIntMapFactory. newUpdatableMapOf(char k1,
                 int v1,
                 char k2,
                 int v2)Constructs a new updatable map of the two specified mappings. | 
| CharIntMap | CharIntMapFactory. newUpdatableMapOf(char k1,
                 int v1,
                 char k2,
                 int v2,
                 char k3,
                 int v3)Constructs a new updatable map of the three specified mappings. | 
| CharIntMap | CharIntMapFactory. newUpdatableMapOf(char k1,
                 int v1,
                 char k2,
                 int v2,
                 char k3,
                 int v3,
                 char k4,
                 int v4)Constructs a new updatable map of the four specified mappings. | 
| CharIntMap | CharIntMapFactory. newUpdatableMapOf(char k1,
                 int v1,
                 char k2,
                 int v2,
                 char k3,
                 int v3,
                 char k4,
                 int v4,
                 char k5,
                 int v5)Constructs a new updatable map of the five specified mappings. | 
| Modifier and Type | Interface and Description | 
|---|---|
| interface  | HashCharIntMapAn interface for  CharIntMaps, based on hash tables. |