Uses of Interface
org.eclipse.collections.api.map.primitive.MutableFloatBooleanMap
Packages that use MutableFloatBooleanMap
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 MutableFloatBooleanMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableFloatBooleanMapModifier and TypeMethodDescriptionMutableFloatBooleanMapFactory.empty()MutableFloatBooleanMapFactory.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableFloatBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableFloatBooleanMapFactory.of()default MutableFloatBooleanMapMutableFloatBooleanMapFactory.of(float key, boolean value) default MutableFloatBooleanMapMutableFloatBooleanMapFactory.of(float key1, boolean value1, float key2, boolean value2) default MutableFloatBooleanMapMutableFloatBooleanMapFactory.of(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3) default MutableFloatBooleanMapMutableFloatBooleanMapFactory.of(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3, float key4, boolean value4) MutableFloatBooleanMapFactory.ofAll(FloatBooleanMap map) MutableFloatBooleanMapFactory.ofInitialCapacity(int capacity) Same asMutableFloatBooleanMapFactory.empty(). but takes in an initial capacityMutableFloatBooleanMapFactory.with()default MutableFloatBooleanMapMutableFloatBooleanMapFactory.with(float key, boolean value) default MutableFloatBooleanMapMutableFloatBooleanMapFactory.with(float key1, boolean value1, float key2, boolean value2) default MutableFloatBooleanMapMutableFloatBooleanMapFactory.with(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3) default MutableFloatBooleanMapMutableFloatBooleanMapFactory.with(float key1, boolean value1, float key2, boolean value2, float key3, boolean value3, float key4, boolean value4) MutableFloatBooleanMapFactory.withAll(FloatBooleanMap map) MutableFloatBooleanMapFactory.withInitialCapacity(int capacity) Same asMutableFloatBooleanMapFactory.empty(). but takes in an initial capacity -
Uses of MutableFloatBooleanMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableFloatBooleanMapModifier and TypeMethodDescriptionMutableFloatBooleanMap.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.MutableFloatBooleanMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableFloatBooleanMap.reject(FloatBooleanPredicate predicate) MutableFloatBooleanMap.select(FloatBooleanPredicate predicate) default MutableFloatBooleanMapMutableFloatBooleanMap.withAllKeyValues(Iterable<FloatBooleanPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableFloatBooleanMap.withKeyValue(float key, boolean value) Associates a value with the specified key.MutableFloatBooleanMap.withoutAllKeys(FloatIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableFloatBooleanMap.withoutKey(float key) Removes the mapping associated with the key, if one exists, from this map.