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