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

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

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

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

Subinterfaces of DoubleFloatMap in com.koloboke.collect.map.hash
 interface HashDoubleFloatMap
          An interface for DoubleFloatMaps, based on hash tables.