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

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

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

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

Subinterfaces of FloatCharMap in com.koloboke.collect.map.hash
 interface HashFloatCharMap
          An interface for FloatCharMaps, based on hash tables.