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

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

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

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

Subinterfaces of LongShortMap in com.koloboke.collect.map.hash
 interface HashLongShortMap
          An interface for LongShortMaps, based on hash tables.