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

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

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

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

Subinterfaces of DoubleCharMap in com.koloboke.collect.map.hash
 interface HashDoubleCharMap
          An interface for DoubleCharMaps, based on hash tables.