Uses of Interface
org.eclipse.collections.api.map.primitive.MutableIntFloatMap
Packages that use MutableIntFloatMap
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 MutableIntFloatMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableIntFloatMapModifier and TypeMethodDescriptionMutableIntFloatMapFactory.empty()MutableIntFloatMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anMutableIntFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntFloatMapFactory.of()Same asMutableIntFloatMapFactory.empty().default MutableIntFloatMapMutableIntFloatMapFactory.of(int key, float value) default MutableIntFloatMapMutableIntFloatMapFactory.of(int key1, float value1, int key2, float value2) default MutableIntFloatMapMutableIntFloatMapFactory.of(int key1, float value1, int key2, float value2, int key3, float value3) default MutableIntFloatMapMutableIntFloatMapFactory.of(int key1, float value1, int key2, float value2, int key3, float value3, int key4, float value4) MutableIntFloatMapFactory.ofAll(IntFloatMap map) MutableIntFloatMapFactory.ofInitialCapacity(int capacity) Same asMutableIntFloatMapFactory.empty(). but takes in an initial capacityMutableIntFloatMapFactory.with()Same asMutableIntFloatMapFactory.empty().default MutableIntFloatMapMutableIntFloatMapFactory.with(int key, float value) default MutableIntFloatMapMutableIntFloatMapFactory.with(int key1, float value1, int key2, float value2) default MutableIntFloatMapMutableIntFloatMapFactory.with(int key1, float value1, int key2, float value2, int key3, float value3) default MutableIntFloatMapMutableIntFloatMapFactory.with(int key1, float value1, int key2, float value2, int key3, float value3, int key4, float value4) MutableIntFloatMapFactory.withAll(IntFloatMap map) MutableIntFloatMapFactory.withInitialCapacity(int capacity) Same asMutableIntFloatMapFactory.empty(). but takes in an initial capacity -
Uses of MutableIntFloatMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableIntFloatMapModifier and TypeMethodDescriptionMutableIntFloatMap.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.MutableIntFloatMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableFloatIntMap.flipUniqueValues()MutableIntFloatMap.reject(IntFloatPredicate predicate) MutableIntFloatMap.select(IntFloatPredicate predicate) default MutableIntFloatMapMutableIntFloatMap.withAllKeyValues(Iterable<IntFloatPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableIntFloatMap.withKeyValue(int key, float value) Associates a value with the specified key.MutableIntFloatMap.withoutAllKeys(IntIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableIntFloatMap.withoutKey(int key) Removes the mapping associated with the key, if one exists, from this map.