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