Uses of Interface
org.eclipse.collections.api.map.primitive.MutableCharFloatMap
Packages that use MutableCharFloatMap
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 MutableCharFloatMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableCharFloatMapModifier and TypeMethodDescriptionMutableCharFloatMapFactory.empty()MutableCharFloatMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anMutableCharFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharFloatMapFactory.of()Same asMutableCharFloatMapFactory.empty().default MutableCharFloatMapMutableCharFloatMapFactory.of(char key, float value) default MutableCharFloatMapMutableCharFloatMapFactory.of(char key1, float value1, char key2, float value2) default MutableCharFloatMapMutableCharFloatMapFactory.of(char key1, float value1, char key2, float value2, char key3, float value3) default MutableCharFloatMapMutableCharFloatMapFactory.of(char key1, float value1, char key2, float value2, char key3, float value3, char key4, float value4) MutableCharFloatMapFactory.ofAll(CharFloatMap map) MutableCharFloatMapFactory.ofInitialCapacity(int capacity) Same asMutableCharFloatMapFactory.empty(). but takes in an initial capacityMutableCharFloatMapFactory.with()Same asMutableCharFloatMapFactory.empty().default MutableCharFloatMapMutableCharFloatMapFactory.with(char key, float value) default MutableCharFloatMapMutableCharFloatMapFactory.with(char key1, float value1, char key2, float value2) default MutableCharFloatMapMutableCharFloatMapFactory.with(char key1, float value1, char key2, float value2, char key3, float value3) default MutableCharFloatMapMutableCharFloatMapFactory.with(char key1, float value1, char key2, float value2, char key3, float value3, char key4, float value4) MutableCharFloatMapFactory.withAll(CharFloatMap map) MutableCharFloatMapFactory.withInitialCapacity(int capacity) Same asMutableCharFloatMapFactory.empty(). but takes in an initial capacity -
Uses of MutableCharFloatMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharFloatMapModifier and TypeMethodDescriptionMutableCharFloatMap.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.MutableCharFloatMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableFloatCharMap.flipUniqueValues()MutableCharFloatMap.reject(CharFloatPredicate predicate) MutableCharFloatMap.select(CharFloatPredicate predicate) default MutableCharFloatMapMutableCharFloatMap.withAllKeyValues(Iterable<CharFloatPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableCharFloatMap.withKeyValue(char key, float value) Associates a value with the specified key.MutableCharFloatMap.withoutAllKeys(CharIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableCharFloatMap.withoutKey(char key) Removes the mapping associated with the key, if one exists, from this map.