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

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

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

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

Subinterfaces of ShortIntMap in com.koloboke.collect.map.hash
 interface HashShortIntMap
          An interface for ShortIntMaps, based on hash tables.