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

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

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

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

Subinterfaces of ShortFloatMap in com.koloboke.collect.map.hash
 interface HashShortFloatMap
          An interface for ShortFloatMaps, based on hash tables.