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