Uses of Interface
com.koloboke.collect.map.hash.HashShortLongMap

Packages that use HashShortLongMap
com.koloboke.collect.map.hash Contains interfaces of Map specializations, based on hash tables, their factories and static factory methods. 
 

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

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