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

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

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

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

Subinterfaces of IntFloatMap in com.koloboke.collect.map.hash
 interface HashIntFloatMap
          An interface for IntFloatMaps, based on hash tables.