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

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

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

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

Subinterfaces of IntDoubleMap in com.koloboke.collect.map.hash
 interface HashIntDoubleMap
          An interface for IntDoubleMaps, based on hash tables.