Uses of Interface
org.eclipse.collections.api.map.primitive.MutableCharShortMap
Packages that use MutableCharShortMap
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 MutableCharShortMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableCharShortMapModifier and TypeMethodDescriptionMutableCharShortMapFactory.empty()MutableCharShortMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableCharShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharShortMapFactory.of()Same asMutableCharShortMapFactory.empty().default MutableCharShortMapMutableCharShortMapFactory.of(char key, short value) default MutableCharShortMapMutableCharShortMapFactory.of(char key1, short value1, char key2, short value2) default MutableCharShortMapMutableCharShortMapFactory.of(char key1, short value1, char key2, short value2, char key3, short value3) default MutableCharShortMapMutableCharShortMapFactory.of(char key1, short value1, char key2, short value2, char key3, short value3, char key4, short value4) MutableCharShortMapFactory.ofAll(CharShortMap map) MutableCharShortMapFactory.ofInitialCapacity(int capacity) Same asMutableCharShortMapFactory.empty(). but takes in an initial capacityMutableCharShortMapFactory.with()Same asMutableCharShortMapFactory.empty().default MutableCharShortMapMutableCharShortMapFactory.with(char key, short value) default MutableCharShortMapMutableCharShortMapFactory.with(char key1, short value1, char key2, short value2) default MutableCharShortMapMutableCharShortMapFactory.with(char key1, short value1, char key2, short value2, char key3, short value3) default MutableCharShortMapMutableCharShortMapFactory.with(char key1, short value1, char key2, short value2, char key3, short value3, char key4, short value4) MutableCharShortMapFactory.withAll(CharShortMap map) MutableCharShortMapFactory.withInitialCapacity(int capacity) Same asMutableCharShortMapFactory.empty(). but takes in an initial capacity -
Uses of MutableCharShortMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharShortMapModifier and TypeMethodDescriptionMutableCharShortMap.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.MutableCharShortMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableShortCharMap.flipUniqueValues()MutableCharShortMap.reject(CharShortPredicate predicate) MutableCharShortMap.select(CharShortPredicate predicate) default MutableCharShortMapMutableCharShortMap.withAllKeyValues(Iterable<CharShortPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableCharShortMap.withKeyValue(char key, short value) Associates a value with the specified key.MutableCharShortMap.withoutAllKeys(CharIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableCharShortMap.withoutKey(char key) Removes the mapping associated with the key, if one exists, from this map.