Uses of Interface
org.eclipse.collections.api.map.primitive.MutableCharIntMap
Packages that use MutableCharIntMap
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 MutableCharIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableCharIntMapModifier and TypeMethodDescriptionMutableCharIntMapFactory.empty()MutableCharIntMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableCharIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharIntMapFactory.of()Same asMutableCharIntMapFactory.empty().default MutableCharIntMapMutableCharIntMapFactory.of(char key, int value) default MutableCharIntMapMutableCharIntMapFactory.of(char key1, int value1, char key2, int value2) default MutableCharIntMapMutableCharIntMapFactory.of(char key1, int value1, char key2, int value2, char key3, int value3) default MutableCharIntMapMutableCharIntMapFactory.of(char key1, int value1, char key2, int value2, char key3, int value3, char key4, int value4) MutableCharIntMapFactory.ofAll(CharIntMap map) MutableCharIntMapFactory.ofInitialCapacity(int capacity) Same asMutableCharIntMapFactory.empty(). but takes in an initial capacityMutableCharIntMapFactory.with()Same asMutableCharIntMapFactory.empty().default MutableCharIntMapMutableCharIntMapFactory.with(char key, int value) default MutableCharIntMapMutableCharIntMapFactory.with(char key1, int value1, char key2, int value2) default MutableCharIntMapMutableCharIntMapFactory.with(char key1, int value1, char key2, int value2, char key3, int value3) default MutableCharIntMapMutableCharIntMapFactory.with(char key1, int value1, char key2, int value2, char key3, int value3, char key4, int value4) MutableCharIntMapFactory.withAll(CharIntMap map) MutableCharIntMapFactory.withInitialCapacity(int capacity) Same asMutableCharIntMapFactory.empty(). but takes in an initial capacity -
Uses of MutableCharIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharIntMapModifier and TypeMethodDescriptionMutableCharIntMap.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.MutableCharIntMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableIntCharMap.flipUniqueValues()MutableCharIntMap.reject(CharIntPredicate predicate) MutableCharIntMap.select(CharIntPredicate predicate) default MutableCharIntMapMutableCharIntMap.withAllKeyValues(Iterable<CharIntPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableCharIntMap.withKeyValue(char key, int value) Associates a value with the specified key.MutableCharIntMap.withoutAllKeys(CharIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableCharIntMap.withoutKey(char key) Removes the mapping associated with the key, if one exists, from this map.