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

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

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

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

Subinterfaces of IntCharMap in com.koloboke.collect.map.hash
 interface HashIntCharMap
          An interface for IntCharMaps, based on hash tables.