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