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

Packages that use CharCharMap
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 CharCharMap in com.koloboke.collect.map
 

Methods in com.koloboke.collect.map that return CharCharMap
 CharCharMap CharCharMapFactory.newImmutableMap(char[] keys, char[] 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.
 CharCharMap CharCharMapFactory.newImmutableMap(char[] keys, char[] 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.
 CharCharMap CharCharMapFactory.newImmutableMap(Character[] keys, Character[] 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.
 CharCharMap CharCharMapFactory.newImmutableMap(Character[] keys, Character[] 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.
 CharCharMap CharCharMapFactory.newImmutableMap(Consumer<CharCharConsumer> entriesSupplier)
          Constructs a new immutable map filled with mappings consumed by the callback within the given closure.
 CharCharMap CharCharMapFactory.newImmutableMap(Consumer<CharCharConsumer> entriesSupplier, int expectedSize)
          Constructs a new immutable map filled with mappings consumed by the callback within the given closure.
 CharCharMap CharCharMapFactory.newImmutableMap(Iterable<Character> keys, Iterable<Character> 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.
 CharCharMap CharCharMapFactory.newImmutableMap(Iterable<Character> keys, Iterable<Character> 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.
 CharCharMap CharCharMapFactory.newImmutableMap(Map<Character,Character> map)
          Constructs a new immutable map with the same mappings as the specified map.
 CharCharMap CharCharMapFactory.newImmutableMap(Map<Character,Character> map1, Map<Character,Character> map2)
          Constructs a new immutable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newImmutableMap(Map<Character,Character> map1, Map<Character,Character> map2, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newImmutableMap(Map<Character,Character> map1, Map<Character,Character> map2, Map<Character,Character> map3)
          Constructs a new immutable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newImmutableMap(Map<Character,Character> map1, Map<Character,Character> map2, Map<Character,Character> map3, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newImmutableMap(Map<Character,Character> map1, Map<Character,Character> map2, Map<Character,Character> map3, Map<Character,Character> map4)
          Constructs a new immutable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newImmutableMap(Map<Character,Character> map1, Map<Character,Character> map2, Map<Character,Character> map3, Map<Character,Character> map4, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newImmutableMap(Map<Character,Character> map1, Map<Character,Character> map2, Map<Character,Character> map3, Map<Character,Character> map4, Map<Character,Character> map5)
          Constructs a new immutable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newImmutableMap(Map<Character,Character> map1, Map<Character,Character> map2, Map<Character,Character> map3, Map<Character,Character> map4, Map<Character,Character> map5, int expectedSize)
          Constructs a new immutable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newImmutableMapOf(char k1, char v1)
          Constructs a new immutable map of the single specified mapping.
 CharCharMap CharCharMapFactory.newImmutableMapOf(char k1, char v1, char k2, char v2)
          Constructs a new immutable map of the two specified mappings.
 CharCharMap CharCharMapFactory.newImmutableMapOf(char k1, char v1, char k2, char v2, char k3, char v3)
          Constructs a new immutable map of the three specified mappings.
 CharCharMap CharCharMapFactory.newImmutableMapOf(char k1, char v1, char k2, char v2, char k3, char v3, char k4, char v4)
          Constructs a new immutable map of the four specified mappings.
 CharCharMap CharCharMapFactory.newImmutableMapOf(char k1, char v1, char k2, char v2, char k3, char v3, char k4, char v4, char k5, char v5)
          Constructs a new immutable map of the five specified mappings.
 CharCharMap CharCharMapFactory.newMutableMap()
          Constructs a new empty mutable map of the default expected size.
 CharCharMap CharCharMapFactory.newMutableMap(char[] keys, char[] 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.
 CharCharMap CharCharMapFactory.newMutableMap(char[] keys, char[] 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.
 CharCharMap CharCharMapFactory.newMutableMap(Character[] keys, Character[] 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.
 CharCharMap CharCharMapFactory.newMutableMap(Character[] keys, Character[] 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.
 CharCharMap CharCharMapFactory.newMutableMap(Consumer<CharCharConsumer> entriesSupplier)
          Constructs a new mutable map filled with mappings consumed by the callback within the given closure.
 CharCharMap CharCharMapFactory.newMutableMap(Consumer<CharCharConsumer> entriesSupplier, int expectedSize)
          Constructs a new mutable map filled with mappings consumed by the callback within the given closure.
 CharCharMap CharCharMapFactory.newMutableMap(int expectedSize)
          Constructs a new empty mutable map of the given expected size.
 CharCharMap CharCharMapFactory.newMutableMap(Iterable<Character> keys, Iterable<Character> 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.
 CharCharMap CharCharMapFactory.newMutableMap(Iterable<Character> keys, Iterable<Character> 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.
 CharCharMap CharCharMapFactory.newMutableMap(Map<Character,Character> map)
          Constructs a new mutable map with the same mappings as the specified map.
 CharCharMap CharCharMapFactory.newMutableMap(Map<Character,Character> map1, Map<Character,Character> map2)
          Constructs a new mutable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newMutableMap(Map<Character,Character> map1, Map<Character,Character> map2, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newMutableMap(Map<Character,Character> map1, Map<Character,Character> map2, Map<Character,Character> map3)
          Constructs a new mutable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newMutableMap(Map<Character,Character> map1, Map<Character,Character> map2, Map<Character,Character> map3, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newMutableMap(Map<Character,Character> map1, Map<Character,Character> map2, Map<Character,Character> map3, Map<Character,Character> map4)
          Constructs a new mutable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newMutableMap(Map<Character,Character> map1, Map<Character,Character> map2, Map<Character,Character> map3, Map<Character,Character> map4, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newMutableMap(Map<Character,Character> map1, Map<Character,Character> map2, Map<Character,Character> map3, Map<Character,Character> map4, Map<Character,Character> map5)
          Constructs a new mutable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newMutableMap(Map<Character,Character> map1, Map<Character,Character> map2, Map<Character,Character> map3, Map<Character,Character> map4, Map<Character,Character> map5, int expectedSize)
          Constructs a new mutable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newMutableMapOf(char k1, char v1)
          Constructs a new mutable map of the single specified mapping.
 CharCharMap CharCharMapFactory.newMutableMapOf(char k1, char v1, char k2, char v2)
          Constructs a new mutable map of the two specified mappings.
 CharCharMap CharCharMapFactory.newMutableMapOf(char k1, char v1, char k2, char v2, char k3, char v3)
          Constructs a new mutable map of the three specified mappings.
 CharCharMap CharCharMapFactory.newMutableMapOf(char k1, char v1, char k2, char v2, char k3, char v3, char k4, char v4)
          Constructs a new mutable map of the four specified mappings.
 CharCharMap CharCharMapFactory.newMutableMapOf(char k1, char v1, char k2, char v2, char k3, char v3, char k4, char v4, char k5, char v5)
          Constructs a new mutable map of the five specified mappings.
 CharCharMap CharCharMapFactory.newUpdatableMap()
          Constructs a new empty updatable map of the default expected size.
 CharCharMap CharCharMapFactory.newUpdatableMap(char[] keys, char[] 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.
 CharCharMap CharCharMapFactory.newUpdatableMap(char[] keys, char[] 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.
 CharCharMap CharCharMapFactory.newUpdatableMap(Character[] keys, Character[] 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.
 CharCharMap CharCharMapFactory.newUpdatableMap(Character[] keys, Character[] 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.
 CharCharMap CharCharMapFactory.newUpdatableMap(Consumer<CharCharConsumer> entriesSupplier)
          Constructs a new updatable map filled with mappings consumed by the callback within the given closure.
 CharCharMap CharCharMapFactory.newUpdatableMap(Consumer<CharCharConsumer> entriesSupplier, int expectedSize)
          Constructs a new updatable map filled with mappings consumed by the callback within the given closure.
 CharCharMap CharCharMapFactory.newUpdatableMap(int expectedSize)
          Constructs a new empty updatable map of the given expected size.
 CharCharMap CharCharMapFactory.newUpdatableMap(Iterable<Character> keys, Iterable<Character> 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.
 CharCharMap CharCharMapFactory.newUpdatableMap(Iterable<Character> keys, Iterable<Character> 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.
 CharCharMap CharCharMapFactory.newUpdatableMap(Map<Character,Character> map)
          Constructs a new updatable map with the same mappings as the specified map.
 CharCharMap CharCharMapFactory.newUpdatableMap(Map<Character,Character> map1, Map<Character,Character> map2)
          Constructs a new updatable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newUpdatableMap(Map<Character,Character> map1, Map<Character,Character> map2, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newUpdatableMap(Map<Character,Character> map1, Map<Character,Character> map2, Map<Character,Character> map3)
          Constructs a new updatable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newUpdatableMap(Map<Character,Character> map1, Map<Character,Character> map2, Map<Character,Character> map3, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newUpdatableMap(Map<Character,Character> map1, Map<Character,Character> map2, Map<Character,Character> map3, Map<Character,Character> map4)
          Constructs a new updatable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newUpdatableMap(Map<Character,Character> map1, Map<Character,Character> map2, Map<Character,Character> map3, Map<Character,Character> map4, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newUpdatableMap(Map<Character,Character> map1, Map<Character,Character> map2, Map<Character,Character> map3, Map<Character,Character> map4, Map<Character,Character> map5)
          Constructs a new updatable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newUpdatableMap(Map<Character,Character> map1, Map<Character,Character> map2, Map<Character,Character> map3, Map<Character,Character> map4, Map<Character,Character> map5, int expectedSize)
          Constructs a new updatable map which merge the mappings of the specified maps.
 CharCharMap CharCharMapFactory.newUpdatableMapOf(char k1, char v1)
          Constructs a new updatable map of the single specified mapping.
 CharCharMap CharCharMapFactory.newUpdatableMapOf(char k1, char v1, char k2, char v2)
          Constructs a new updatable map of the two specified mappings.
 CharCharMap CharCharMapFactory.newUpdatableMapOf(char k1, char v1, char k2, char v2, char k3, char v3)
          Constructs a new updatable map of the three specified mappings.
 CharCharMap CharCharMapFactory.newUpdatableMapOf(char k1, char v1, char k2, char v2, char k3, char v3, char k4, char v4)
          Constructs a new updatable map of the four specified mappings.
 CharCharMap CharCharMapFactory.newUpdatableMapOf(char k1, char v1, char k2, char v2, char k3, char v3, char k4, char v4, char k5, char v5)
          Constructs a new updatable map of the five specified mappings.
 

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

Subinterfaces of CharCharMap in com.koloboke.collect.map.hash
 interface HashCharCharMap
          An interface for CharCharMaps, based on hash tables.