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

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

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

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

Subinterfaces of DoubleByteMap in com.koloboke.collect.map.hash
 interface HashDoubleByteMap
          An interface for DoubleByteMaps, based on hash tables.