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

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

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

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

Subinterfaces of DoubleLongMap in com.koloboke.collect.map.hash
 interface HashDoubleLongMap
          An interface for DoubleLongMaps, based on hash tables.