Uses of Interface
org.eclipse.collections.api.map.primitive.MutableCharLongMap
Packages that use MutableCharLongMap
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 MutableCharLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableCharLongMapModifier and TypeMethodDescriptionMutableCharLongMapFactory.empty()MutableCharLongMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableCharLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharLongMapFactory.of()Same asMutableCharLongMapFactory.empty().default MutableCharLongMapMutableCharLongMapFactory.of(char key, long value) default MutableCharLongMapMutableCharLongMapFactory.of(char key1, long value1, char key2, long value2) default MutableCharLongMapMutableCharLongMapFactory.of(char key1, long value1, char key2, long value2, char key3, long value3) default MutableCharLongMapMutableCharLongMapFactory.of(char key1, long value1, char key2, long value2, char key3, long value3, char key4, long value4) MutableCharLongMapFactory.ofAll(CharLongMap map) MutableCharLongMapFactory.ofInitialCapacity(int capacity) Same asMutableCharLongMapFactory.empty(). but takes in an initial capacityMutableCharLongMapFactory.with()Same asMutableCharLongMapFactory.empty().default MutableCharLongMapMutableCharLongMapFactory.with(char key, long value) default MutableCharLongMapMutableCharLongMapFactory.with(char key1, long value1, char key2, long value2) default MutableCharLongMapMutableCharLongMapFactory.with(char key1, long value1, char key2, long value2, char key3, long value3) default MutableCharLongMapMutableCharLongMapFactory.with(char key1, long value1, char key2, long value2, char key3, long value3, char key4, long value4) MutableCharLongMapFactory.withAll(CharLongMap map) MutableCharLongMapFactory.withInitialCapacity(int capacity) Same asMutableCharLongMapFactory.empty(). but takes in an initial capacity -
Uses of MutableCharLongMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharLongMapModifier and TypeMethodDescriptionMutableCharLongMap.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.MutableCharLongMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableLongCharMap.flipUniqueValues()MutableCharLongMap.reject(CharLongPredicate predicate) MutableCharLongMap.select(CharLongPredicate predicate) default MutableCharLongMapMutableCharLongMap.withAllKeyValues(Iterable<CharLongPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableCharLongMap.withKeyValue(char key, long value) Associates a value with the specified key.MutableCharLongMap.withoutAllKeys(CharIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableCharLongMap.withoutKey(char key) Removes the mapping associated with the key, if one exists, from this map.