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

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

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

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

Subinterfaces of ShortCharMap in com.koloboke.collect.map.hash
 interface HashShortCharMap
          An interface for ShortCharMaps, based on hash tables.