Uses of Interface
org.eclipse.collections.api.map.primitive.MutableFloatIntMap
Packages that use MutableFloatIntMap
Package
Description
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
-
Uses of MutableFloatIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableFloatIntMapModifier and TypeMethodDescriptionMutableFloatIntMapFactory.empty()MutableFloatIntMapFactory.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableFloatIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableFloatIntMapFactory.of()Same asMutableFloatIntMapFactory.empty().default MutableFloatIntMapMutableFloatIntMapFactory.of(float key, int value) default MutableFloatIntMapMutableFloatIntMapFactory.of(float key1, int value1, float key2, int value2) default MutableFloatIntMapMutableFloatIntMapFactory.of(float key1, int value1, float key2, int value2, float key3, int value3) default MutableFloatIntMapMutableFloatIntMapFactory.of(float key1, int value1, float key2, int value2, float key3, int value3, float key4, int value4) MutableFloatIntMapFactory.ofAll(FloatIntMap map) MutableFloatIntMapFactory.ofInitialCapacity(int capacity) Same asMutableFloatIntMapFactory.empty(). but takes in an initial capacityMutableFloatIntMapFactory.with()Same asMutableFloatIntMapFactory.empty().default MutableFloatIntMapMutableFloatIntMapFactory.with(float key, int value) default MutableFloatIntMapMutableFloatIntMapFactory.with(float key1, int value1, float key2, int value2) default MutableFloatIntMapMutableFloatIntMapFactory.with(float key1, int value1, float key2, int value2, float key3, int value3) default MutableFloatIntMapMutableFloatIntMapFactory.with(float key1, int value1, float key2, int value2, float key3, int value3, float key4, int value4) MutableFloatIntMapFactory.withAll(FloatIntMap map) MutableFloatIntMapFactory.withInitialCapacity(int capacity) Same asMutableFloatIntMapFactory.empty(). but takes in an initial capacity -
Uses of MutableFloatIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableFloatIntMapModifier and TypeMethodDescriptionMutableFloatIntMap.asSynchronized()Returns a synchronized view of this map, delegating all operations to this map but ensuring only one caller has access to the map at a time.MutableFloatIntMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableIntFloatMap.flipUniqueValues()MutableFloatIntMap.reject(FloatIntPredicate predicate) MutableFloatIntMap.select(FloatIntPredicate predicate) default MutableFloatIntMapMutableFloatIntMap.withAllKeyValues(Iterable<FloatIntPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableFloatIntMap.withKeyValue(float key, int value) Associates a value with the specified key.MutableFloatIntMap.withoutAllKeys(FloatIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatIntMap.withoutKey(float key) Removes the mapping associated with the key, if one exists, from this map.