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.
This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
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().MutableCharDoubleMapFactory.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(). -
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. -
Uses of MutableCharDoubleMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableCharDoubleMapModifier and TypeFieldDescriptionprivate final MutableCharDoubleMapImmutableCharDoubleHashMap.delegate -
Uses of MutableCharDoubleMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableCharDoubleMapModifier and TypeClassDescriptionclassThis file was automatically generated from template file primitivePrimitiveHashMap.stg.classA synchronized view of aMutableCharDoubleMap.classThis file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableCharDoubleMapModifier and TypeFieldDescriptionprivate final MutableCharDoubleMapSynchronizedCharDoubleMap.mapprivate final MutableCharDoubleMapUnmodifiableCharDoubleMap.mapMethods in org.eclipse.collections.impl.map.mutable.primitive that return MutableCharDoubleMapModifier and TypeMethodDescriptionCharDoubleHashMap.asSynchronized()SynchronizedCharDoubleMap.asSynchronized()UnmodifiableCharDoubleMap.asSynchronized()CharDoubleHashMap.asUnmodifiable()SynchronizedCharDoubleMap.asUnmodifiable()UnmodifiableCharDoubleMap.asUnmodifiable()MutableCharDoubleMapFactoryImpl.empty()DoubleCharHashMap.flipUniqueValues()SynchronizedDoubleCharMap.flipUniqueValues()UnmodifiableDoubleCharMap.flipUniqueValues()MutableCharDoubleMapFactoryImpl.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) MutableCharDoubleMapFactoryImpl.of()MutableCharDoubleMapFactoryImpl.of(char key, double value) MutableCharDoubleMapFactoryImpl.of(char key1, double value1, char key2, double value2) MutableCharDoubleMapFactoryImpl.of(char key1, double value1, char key2, double value2, char key3, double value3) MutableCharDoubleMapFactoryImpl.of(char key1, double value1, char key2, double value2, char key3, double value3, char key4, double value4) MutableCharDoubleMapFactoryImpl.ofAll(CharDoubleMap map) MutableCharDoubleMapFactoryImpl.ofInitialCapacity(int capacity) SynchronizedCharDoubleMap.reject(CharDoublePredicate predicate) UnmodifiableCharDoubleMap.reject(CharDoublePredicate predicate) SynchronizedCharDoubleMap.select(CharDoublePredicate predicate) UnmodifiableCharDoubleMap.select(CharDoublePredicate predicate) MutableCharDoubleMapFactoryImpl.with()MutableCharDoubleMapFactoryImpl.with(char key, double value) MutableCharDoubleMapFactoryImpl.with(char key1, double value1, char key2, double value2) MutableCharDoubleMapFactoryImpl.with(char key1, double value1, char key2, double value2, char key3, double value3) MutableCharDoubleMapFactoryImpl.with(char key1, double value1, char key2, double value2, char key3, double value3, char key4, double value4) MutableCharDoubleMapFactoryImpl.withAll(CharDoubleMap map) MutableCharDoubleMapFactoryImpl.withInitialCapacity(int capacity) SynchronizedCharDoubleMap.withKeyValue(char key, double value) UnmodifiableCharDoubleMap.withKeyValue(char key, double value) SynchronizedCharDoubleMap.withoutAllKeys(CharIterable keys) UnmodifiableCharDoubleMap.withoutAllKeys(CharIterable keys) SynchronizedCharDoubleMap.withoutKey(char key) UnmodifiableCharDoubleMap.withoutKey(char key) Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableCharDoubleMapModifierConstructorDescriptionSynchronizedCharDoubleMap(MutableCharDoubleMap map, Object newLock)