Uses of Interface
org.eclipse.collections.api.map.primitive.MutableCharDoubleMap
Packages that use MutableCharDoubleMap
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 MutableCharDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableCharDoubleMapModifier and TypeMethodDescriptionMutableCharDoubleMapFactory.empty()MutableCharDoubleMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableCharDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharDoubleMapFactory.of()Same asMutableCharDoubleMapFactory.empty().default MutableCharDoubleMapMutableCharDoubleMapFactory.of(char key, double value) default MutableCharDoubleMapMutableCharDoubleMapFactory.of(char key1, double value1, char key2, double value2) default MutableCharDoubleMapMutableCharDoubleMapFactory.of(char key1, double value1, char key2, double value2, char key3, double value3) default MutableCharDoubleMapMutableCharDoubleMapFactory.of(char key1, double value1, char key2, double value2, char key3, double value3, char key4, double value4) MutableCharDoubleMapFactory.ofAll(CharDoubleMap map) MutableCharDoubleMapFactory.ofInitialCapacity(int capacity) Same asMutableCharDoubleMapFactory.empty(). but takes in an initial capacityMutableCharDoubleMapFactory.with()Same asMutableCharDoubleMapFactory.empty().default MutableCharDoubleMapMutableCharDoubleMapFactory.with(char key, double value) default MutableCharDoubleMapMutableCharDoubleMapFactory.with(char key1, double value1, char key2, double value2) default MutableCharDoubleMapMutableCharDoubleMapFactory.with(char key1, double value1, char key2, double value2, char key3, double value3) default MutableCharDoubleMapMutableCharDoubleMapFactory.with(char key1, double value1, char key2, double value2, char key3, double value3, char key4, double value4) MutableCharDoubleMapFactory.withAll(CharDoubleMap map) MutableCharDoubleMapFactory.withInitialCapacity(int capacity) Same asMutableCharDoubleMapFactory.empty(). but takes in an initial capacity -
Uses of MutableCharDoubleMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharDoubleMapModifier and TypeMethodDescriptionMutableCharDoubleMap.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.MutableCharDoubleMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableDoubleCharMap.flipUniqueValues()MutableCharDoubleMap.reject(CharDoublePredicate predicate) MutableCharDoubleMap.select(CharDoublePredicate predicate) default MutableCharDoubleMapMutableCharDoubleMap.withAllKeyValues(Iterable<CharDoublePair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableCharDoubleMap.withKeyValue(char key, double value) Associates a value with the specified key.MutableCharDoubleMap.withoutAllKeys(CharIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableCharDoubleMap.withoutKey(char key) Removes the mapping associated with the key, if one exists, from this map.