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

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

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

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

Subinterfaces of IntShortMap in com.koloboke.collect.map.hash
 interface HashIntShortMap
          An interface for IntShortMaps, based on hash tables.