Uses of Interface
com.koloboke.collect.map.CharIntMap

Packages that use CharIntMap
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. 
 

Uses of CharIntMap in com.koloboke.collect.map
 

Methods in com.koloboke.collect.map that return CharIntMap
 CharIntMap CharIntMapFactory.newImmutableMap(char[] keys, int[] values)
          Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
 CharIntMap CharIntMapFactory.newImmutableMap(char[] keys, int[] values, int expectedSize)
          Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
 CharIntMap CharIntMapFactory.newImmutableMap(Character[] keys, Integer[] values)
          Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
 CharIntMap CharIntMapFactory.newImmutableMap(Character[] keys, Integer[] values, int expectedSize)
          Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
 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. e. pairs of elements from the keys and values iterables at the same iteration position.
 CharIntMap CharIntMapFactory.newImmutableMap(Iterable<Character> keys, Iterable<Integer> values, int expectedSize)
          Constructs a new immutable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position.
 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. e. pairs of elements from the keys and values arrays at the same index.
 CharIntMap CharIntMapFactory.newMutableMap(char[] keys, int[] values, int expectedSize)
          Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
 CharIntMap CharIntMapFactory.newMutableMap(Character[] keys, Integer[] values)
          Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
 CharIntMap CharIntMapFactory.newMutableMap(Character[] keys, Integer[] values, int expectedSize)
          Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
 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. e. pairs of elements from the keys and values iterables at the same iteration position.
 CharIntMap CharIntMapFactory.newMutableMap(Iterable<Character> keys, Iterable<Integer> values, int expectedSize)
          Constructs a new mutable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position.
 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. e. pairs of elements from the keys and values arrays at the same index.
 CharIntMap CharIntMapFactory.newUpdatableMap(char[] keys, int[] values, int expectedSize)
          Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
 CharIntMap CharIntMapFactory.newUpdatableMap(Character[] keys, Integer[] values)
          Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
 CharIntMap CharIntMapFactory.newUpdatableMap(Character[] keys, Integer[] values, int expectedSize)
          Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values arrays at the same index.
 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. e. pairs of elements from the keys and values iterables at the same iteration position.
 CharIntMap CharIntMapFactory.newUpdatableMap(Iterable<Character> keys, Iterable<Integer> values, int expectedSize)
          Constructs a new updatable map with the given mappings, i. e. pairs of elements from the keys and values iterables at the same iteration position.
 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.
 

Uses of CharIntMap in com.koloboke.collect.map.hash
 

Subinterfaces of CharIntMap in com.koloboke.collect.map.hash
 interface HashCharIntMap
          An interface for CharIntMaps, based on hash tables.