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

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

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

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

Subinterfaces of ShortByteMap in com.koloboke.collect.map.hash
 interface HashShortByteMap
          An interface for ShortByteMaps, based on hash tables.