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

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

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

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

Subinterfaces of CharFloatMap in com.koloboke.collect.map.hash
 interface HashCharFloatMap
          An interface for CharFloatMaps, based on hash tables.