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

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

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

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

Subinterfaces of ShortShortMap in com.koloboke.collect.map.hash
 interface HashShortShortMap
          An interface for ShortShortMaps, based on hash tables.