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

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

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

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

Subinterfaces of FloatIntMap in com.koloboke.collect.map.hash
 interface HashFloatIntMap
          An interface for FloatIntMaps, based on hash tables.