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

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

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

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

Subinterfaces of DoubleDoubleMap in com.koloboke.collect.map.hash
 interface HashDoubleDoubleMap
          An interface for DoubleDoubleMaps, based on hash tables.