Uses of Interface
org.eclipse.collections.api.map.primitive.MutableDoubleFloatMap
Packages that use MutableDoubleFloatMap
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 MutableDoubleFloatMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableDoubleFloatMapModifier and TypeMethodDescriptionMutableDoubleFloatMapFactory.empty()MutableDoubleFloatMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anMutableDoubleFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleFloatMapFactory.of()Same asMutableDoubleFloatMapFactory.empty().default MutableDoubleFloatMapMutableDoubleFloatMapFactory.of(double key, float value) default MutableDoubleFloatMapMutableDoubleFloatMapFactory.of(double key1, float value1, double key2, float value2) default MutableDoubleFloatMapMutableDoubleFloatMapFactory.of(double key1, float value1, double key2, float value2, double key3, float value3) default MutableDoubleFloatMapMutableDoubleFloatMapFactory.of(double key1, float value1, double key2, float value2, double key3, float value3, double key4, float value4) MutableDoubleFloatMapFactory.ofAll(DoubleFloatMap map) MutableDoubleFloatMapFactory.ofInitialCapacity(int capacity) Same asMutableDoubleFloatMapFactory.empty(). but takes in an initial capacityMutableDoubleFloatMapFactory.with()Same asMutableDoubleFloatMapFactory.empty().default MutableDoubleFloatMapMutableDoubleFloatMapFactory.with(double key, float value) default MutableDoubleFloatMapMutableDoubleFloatMapFactory.with(double key1, float value1, double key2, float value2) default MutableDoubleFloatMapMutableDoubleFloatMapFactory.with(double key1, float value1, double key2, float value2, double key3, float value3) default MutableDoubleFloatMapMutableDoubleFloatMapFactory.with(double key1, float value1, double key2, float value2, double key3, float value3, double key4, float value4) MutableDoubleFloatMapFactory.withAll(DoubleFloatMap map) MutableDoubleFloatMapFactory.withInitialCapacity(int capacity) Same asMutableDoubleFloatMapFactory.empty(). but takes in an initial capacity -
Uses of MutableDoubleFloatMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableDoubleFloatMapModifier and TypeMethodDescriptionMutableDoubleFloatMap.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.MutableDoubleFloatMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableFloatDoubleMap.flipUniqueValues()MutableDoubleFloatMap.reject(DoubleFloatPredicate predicate) MutableDoubleFloatMap.select(DoubleFloatPredicate predicate) default MutableDoubleFloatMapMutableDoubleFloatMap.withAllKeyValues(Iterable<DoubleFloatPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableDoubleFloatMap.withKeyValue(double key, float value) Associates a value with the specified key.MutableDoubleFloatMap.withoutAllKeys(DoubleIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleFloatMap.withoutKey(double key) Removes the mapping associated with the key, if one exists, from this map.