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

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

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

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

Subinterfaces of DoubleIntMap in com.koloboke.collect.map.hash
 interface HashDoubleIntMap
          An interface for DoubleIntMaps, based on hash tables.