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.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
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 anMutableCharIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableCharIntMapFactory.of()
Same asMutableCharIntMapFactory.empty()
.default MutableCharIntMap
MutableCharIntMapFactory.of
(char key, int value) default MutableCharIntMap
MutableCharIntMapFactory.of
(char key1, int value1, char key2, int value2) default MutableCharIntMap
MutableCharIntMapFactory.of
(char key1, int value1, char key2, int value2, char key3, int value3) default MutableCharIntMap
MutableCharIntMapFactory.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()
.MutableCharIntMapFactory.with()
Same asMutableCharIntMapFactory.empty()
.default MutableCharIntMap
MutableCharIntMapFactory.with
(char key, int value) default MutableCharIntMap
MutableCharIntMapFactory.with
(char key1, int value1, char key2, int value2) default MutableCharIntMap
MutableCharIntMapFactory.with
(char key1, int value1, char key2, int value2, char key3, int value3) default MutableCharIntMap
MutableCharIntMapFactory.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()
. -
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 anUnsupportedOperationException
for all mutating operations.MutableIntCharMap.flipUniqueValues()
MutableCharIntMap.reject
(CharIntPredicate predicate) MutableCharIntMap.select
(CharIntPredicate predicate) default MutableCharIntMap
MutableCharIntMap.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. -
Uses of MutableCharIntMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableCharIntMapModifier and TypeClassDescriptionclass
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
A synchronized view of aMutableCharIntMap
.class
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableCharIntMapModifier and TypeMethodDescriptionCharIntHashMap.asSynchronized()
SynchronizedCharIntMap.asSynchronized()
UnmodifiableCharIntMap.asSynchronized()
CharIntHashMap.asUnmodifiable()
SynchronizedCharIntMap.asUnmodifiable()
UnmodifiableCharIntMap.asUnmodifiable()
MutableCharIntMapFactoryImpl.empty()
IntCharHashMap.flipUniqueValues()
SynchronizedIntCharMap.flipUniqueValues()
UnmodifiableIntCharMap.flipUniqueValues()
MutableCharIntMapFactoryImpl.from
(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) MutableCharIntMapFactoryImpl.of()
MutableCharIntMapFactoryImpl.of
(char key, int value) MutableCharIntMapFactoryImpl.of
(char key1, int value1, char key2, int value2) MutableCharIntMapFactoryImpl.of
(char key1, int value1, char key2, int value2, char key3, int value3) MutableCharIntMapFactoryImpl.of
(char key1, int value1, char key2, int value2, char key3, int value3, char key4, int value4) MutableCharIntMapFactoryImpl.ofAll
(CharIntMap map) MutableCharIntMapFactoryImpl.ofInitialCapacity
(int capacity) SynchronizedCharIntMap.reject
(CharIntPredicate predicate) UnmodifiableCharIntMap.reject
(CharIntPredicate predicate) SynchronizedCharIntMap.select
(CharIntPredicate predicate) UnmodifiableCharIntMap.select
(CharIntPredicate predicate) MutableCharIntMapFactoryImpl.with()
MutableCharIntMapFactoryImpl.with
(char key, int value) MutableCharIntMapFactoryImpl.with
(char key1, int value1, char key2, int value2) MutableCharIntMapFactoryImpl.with
(char key1, int value1, char key2, int value2, char key3, int value3) MutableCharIntMapFactoryImpl.with
(char key1, int value1, char key2, int value2, char key3, int value3, char key4, int value4) MutableCharIntMapFactoryImpl.withAll
(CharIntMap map) MutableCharIntMapFactoryImpl.withInitialCapacity
(int capacity) SynchronizedCharIntMap.withKeyValue
(char key, int value) UnmodifiableCharIntMap.withKeyValue
(char key, int value) SynchronizedCharIntMap.withoutAllKeys
(CharIterable keys) UnmodifiableCharIntMap.withoutAllKeys
(CharIterable keys) SynchronizedCharIntMap.withoutKey
(char key) UnmodifiableCharIntMap.withoutKey
(char key) Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableCharIntMap