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

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

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

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

Subinterfaces of CharShortMap in com.koloboke.collect.map.hash
 interface HashCharShortMap
          An interface for CharShortMaps, based on hash tables.