|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FloatObjMap | |
---|---|
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 FloatObjMap in com.koloboke.collect.map |
---|
Methods in com.koloboke.collect.map that return FloatObjMap | ||
---|---|---|
|
FloatObjMapFactory.newImmutableMap(Consumer<FloatObjConsumer<V2>> entriesSupplier)
Constructs a new immutable map filled with mappings consumed by the callback within the given closure. |
|
|
FloatObjMapFactory.newImmutableMap(Consumer<FloatObjConsumer<V2>> entriesSupplier,
int expectedSize)
Constructs a new immutable map filled with mappings consumed by the callback within the given closure. |
|
|
FloatObjMapFactory.newImmutableMap(float[] keys,
V2[] 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. |
|
|
FloatObjMapFactory.newImmutableMap(Float[] keys,
V2[] 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. |
|
|
FloatObjMapFactory.newImmutableMap(float[] keys,
V2[] 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. |
|
|
FloatObjMapFactory.newImmutableMap(Float[] keys,
V2[] 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. |
|
|
FloatObjMapFactory.newImmutableMap(Iterable<Float> keys,
Iterable<? extends V2> 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. |
|
|
FloatObjMapFactory.newImmutableMap(Iterable<Float> keys,
Iterable<? extends V2> 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. |
|
|
FloatObjMapFactory.newImmutableMap(Map<Float,? extends V2> map)
Constructs a new immutable map with the same mappings as the specified map . |
|
|
FloatObjMapFactory.newImmutableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2)
Constructs a new immutable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newImmutableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newImmutableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
Map<Float,? extends V2> map3)
Constructs a new immutable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newImmutableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
Map<Float,? extends V2> map3,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newImmutableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
Map<Float,? extends V2> map3,
Map<Float,? extends V2> map4)
Constructs a new immutable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newImmutableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
Map<Float,? extends V2> map3,
Map<Float,? extends V2> map4,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newImmutableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
Map<Float,? extends V2> map3,
Map<Float,? extends V2> map4,
Map<Float,? extends V2> map5)
Constructs a new immutable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newImmutableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
Map<Float,? extends V2> map3,
Map<Float,? extends V2> map4,
Map<Float,? extends V2> map5,
int expectedSize)
Constructs a new immutable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newImmutableMapOf(float k1,
V2 v1)
Constructs a new immutable map of the single specified mapping. |
|
|
FloatObjMapFactory.newImmutableMapOf(float k1,
V2 v1,
float k2,
V2 v2)
Constructs a new immutable map of the two specified mappings. |
|
|
FloatObjMapFactory.newImmutableMapOf(float k1,
V2 v1,
float k2,
V2 v2,
float k3,
V2 v3)
Constructs a new immutable map of the three specified mappings. |
|
|
FloatObjMapFactory.newImmutableMapOf(float k1,
V2 v1,
float k2,
V2 v2,
float k3,
V2 v3,
float k4,
V2 v4)
Constructs a new immutable map of the four specified mappings. |
|
|
FloatObjMapFactory.newImmutableMapOf(float k1,
V2 v1,
float k2,
V2 v2,
float k3,
V2 v3,
float k4,
V2 v4,
float k5,
V2 v5)
Constructs a new immutable map of the five specified mappings. |
|
|
FloatObjMapFactory.newMutableMap()
Constructs a new empty mutable map of the default expected size. |
|
|
FloatObjMapFactory.newMutableMap(Consumer<FloatObjConsumer<V2>> entriesSupplier)
Constructs a new mutable map filled with mappings consumed by the callback within the given closure. |
|
|
FloatObjMapFactory.newMutableMap(Consumer<FloatObjConsumer<V2>> entriesSupplier,
int expectedSize)
Constructs a new mutable map filled with mappings consumed by the callback within the given closure. |
|
|
FloatObjMapFactory.newMutableMap(float[] keys,
V2[] 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. |
|
|
FloatObjMapFactory.newMutableMap(Float[] keys,
V2[] 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. |
|
|
FloatObjMapFactory.newMutableMap(float[] keys,
V2[] 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. |
|
|
FloatObjMapFactory.newMutableMap(Float[] keys,
V2[] 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. |
|
|
FloatObjMapFactory.newMutableMap(int expectedSize)
Constructs a new empty mutable map of the given expected size. |
|
|
FloatObjMapFactory.newMutableMap(Iterable<Float> keys,
Iterable<? extends V2> 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. |
|
|
FloatObjMapFactory.newMutableMap(Iterable<Float> keys,
Iterable<? extends V2> 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. |
|
|
FloatObjMapFactory.newMutableMap(Map<Float,? extends V2> map)
Constructs a new mutable map with the same mappings as the specified map . |
|
|
FloatObjMapFactory.newMutableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2)
Constructs a new mutable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newMutableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newMutableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
Map<Float,? extends V2> map3)
Constructs a new mutable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newMutableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
Map<Float,? extends V2> map3,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newMutableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
Map<Float,? extends V2> map3,
Map<Float,? extends V2> map4)
Constructs a new mutable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newMutableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
Map<Float,? extends V2> map3,
Map<Float,? extends V2> map4,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newMutableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
Map<Float,? extends V2> map3,
Map<Float,? extends V2> map4,
Map<Float,? extends V2> map5)
Constructs a new mutable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newMutableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
Map<Float,? extends V2> map3,
Map<Float,? extends V2> map4,
Map<Float,? extends V2> map5,
int expectedSize)
Constructs a new mutable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newMutableMapOf(float k1,
V2 v1)
Constructs a new mutable map of the single specified mapping. |
|
|
FloatObjMapFactory.newMutableMapOf(float k1,
V2 v1,
float k2,
V2 v2)
Constructs a new mutable map of the two specified mappings. |
|
|
FloatObjMapFactory.newMutableMapOf(float k1,
V2 v1,
float k2,
V2 v2,
float k3,
V2 v3)
Constructs a new mutable map of the three specified mappings. |
|
|
FloatObjMapFactory.newMutableMapOf(float k1,
V2 v1,
float k2,
V2 v2,
float k3,
V2 v3,
float k4,
V2 v4)
Constructs a new mutable map of the four specified mappings. |
|
|
FloatObjMapFactory.newMutableMapOf(float k1,
V2 v1,
float k2,
V2 v2,
float k3,
V2 v3,
float k4,
V2 v4,
float k5,
V2 v5)
Constructs a new mutable map of the five specified mappings. |
|
|
FloatObjMapFactory.newUpdatableMap()
Constructs a new empty updatable map of the default expected size. |
|
|
FloatObjMapFactory.newUpdatableMap(Consumer<FloatObjConsumer<V2>> entriesSupplier)
Constructs a new updatable map filled with mappings consumed by the callback within the given closure. |
|
|
FloatObjMapFactory.newUpdatableMap(Consumer<FloatObjConsumer<V2>> entriesSupplier,
int expectedSize)
Constructs a new updatable map filled with mappings consumed by the callback within the given closure. |
|
|
FloatObjMapFactory.newUpdatableMap(float[] keys,
V2[] 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. |
|
|
FloatObjMapFactory.newUpdatableMap(Float[] keys,
V2[] 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. |
|
|
FloatObjMapFactory.newUpdatableMap(float[] keys,
V2[] 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. |
|
|
FloatObjMapFactory.newUpdatableMap(Float[] keys,
V2[] 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. |
|
|
FloatObjMapFactory.newUpdatableMap(int expectedSize)
Constructs a new empty updatable map of the given expected size. |
|
|
FloatObjMapFactory.newUpdatableMap(Iterable<Float> keys,
Iterable<? extends V2> 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. |
|
|
FloatObjMapFactory.newUpdatableMap(Iterable<Float> keys,
Iterable<? extends V2> 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. |
|
|
FloatObjMapFactory.newUpdatableMap(Map<Float,? extends V2> map)
Constructs a new updatable map with the same mappings as the specified map . |
|
|
FloatObjMapFactory.newUpdatableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2)
Constructs a new updatable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newUpdatableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newUpdatableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
Map<Float,? extends V2> map3)
Constructs a new updatable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newUpdatableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
Map<Float,? extends V2> map3,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newUpdatableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
Map<Float,? extends V2> map3,
Map<Float,? extends V2> map4)
Constructs a new updatable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newUpdatableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
Map<Float,? extends V2> map3,
Map<Float,? extends V2> map4,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newUpdatableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
Map<Float,? extends V2> map3,
Map<Float,? extends V2> map4,
Map<Float,? extends V2> map5)
Constructs a new updatable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newUpdatableMap(Map<Float,? extends V2> map1,
Map<Float,? extends V2> map2,
Map<Float,? extends V2> map3,
Map<Float,? extends V2> map4,
Map<Float,? extends V2> map5,
int expectedSize)
Constructs a new updatable map which merge the mappings of the specified maps. |
|
|
FloatObjMapFactory.newUpdatableMapOf(float k1,
V2 v1)
Constructs a new updatable map of the single specified mapping. |
|
|
FloatObjMapFactory.newUpdatableMapOf(float k1,
V2 v1,
float k2,
V2 v2)
Constructs a new updatable map of the two specified mappings. |
|
|
FloatObjMapFactory.newUpdatableMapOf(float k1,
V2 v1,
float k2,
V2 v2,
float k3,
V2 v3)
Constructs a new updatable map of the three specified mappings. |
|
|
FloatObjMapFactory.newUpdatableMapOf(float k1,
V2 v1,
float k2,
V2 v2,
float k3,
V2 v3,
float k4,
V2 v4)
Constructs a new updatable map of the four specified mappings. |
|
|
FloatObjMapFactory.newUpdatableMapOf(float k1,
V2 v1,
float k2,
V2 v2,
float k3,
V2 v3,
float k4,
V2 v4,
float k5,
V2 v5)
Constructs a new updatable map of the five specified mappings. |
Uses of FloatObjMap in com.koloboke.collect.map.hash |
---|
Subinterfaces of FloatObjMap in com.koloboke.collect.map.hash | |
---|---|
interface |
HashFloatObjMap<V>
An interface for FloatObjMap s, based on hash tables. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |