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

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

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

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

Subinterfaces of LongFloatMap in com.koloboke.collect.map.hash
 interface HashLongFloatMap
          An interface for LongFloatMaps, based on hash tables.