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

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

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

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

Subinterfaces of LongDoubleMap in com.koloboke.collect.map.hash
 interface HashLongDoubleMap
          An interface for LongDoubleMaps, based on hash tables.