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

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

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

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

Subinterfaces of ShortLongMap in com.koloboke.collect.map.hash
 interface HashShortLongMap
          An interface for ShortLongMaps, based on hash tables.