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

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

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

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

Subinterfaces of FloatShortMap in com.koloboke.collect.map.hash
 interface HashFloatShortMap
          An interface for FloatShortMaps, based on hash tables.