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