Uses of Interface
org.eclipse.collections.api.map.primitive.MutableIntIntMap
Packages that use MutableIntIntMap
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 MutableIntIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableIntIntMapModifier and TypeMethodDescriptionMutableIntIntMapFactory.empty()
<T> MutableIntIntMap
MutableIntIntMapFactory.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableIntIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableIntIntMapFactory.of()
Same asMutableIntIntMapFactory.empty()
.default MutableIntIntMap
MutableIntIntMapFactory.of
(int key, int value) default MutableIntIntMap
MutableIntIntMapFactory.of
(int key1, int value1, int key2, int value2) default MutableIntIntMap
MutableIntIntMapFactory.of
(int key1, int value1, int key2, int value2, int key3, int value3) default MutableIntIntMap
MutableIntIntMapFactory.of
(int key1, int value1, int key2, int value2, int key3, int value3, int key4, int value4) MutableIntIntMapFactory.ofInitialCapacity
(int capacity) Same asMutableIntIntMapFactory.empty()
.MutableIntIntMapFactory.with()
Same asMutableIntIntMapFactory.empty()
.default MutableIntIntMap
MutableIntIntMapFactory.with
(int key, int value) default MutableIntIntMap
MutableIntIntMapFactory.with
(int key1, int value1, int key2, int value2) default MutableIntIntMap
MutableIntIntMapFactory.with
(int key1, int value1, int key2, int value2, int key3, int value3) default MutableIntIntMap
MutableIntIntMapFactory.with
(int key1, int value1, int key2, int value2, int key3, int value3, int key4, int value4) MutableIntIntMapFactory.withInitialCapacity
(int capacity) Same asMutableIntIntMapFactory.empty()
. -
Uses of MutableIntIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableIntIntMapModifier and TypeMethodDescriptionMutableIntIntMap.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.MutableIntIntMap.asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableIntIntMap.flipUniqueValues()
MutableIntIntMap.reject
(IntIntPredicate predicate) MutableIntIntMap.select
(IntIntPredicate predicate) default MutableIntIntMap
MutableIntIntMap.withAllKeyValues
(Iterable<IntIntPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableIntIntMap.withKeyValue
(int key, int value) Associates a value with the specified key.MutableIntIntMap.withoutAllKeys
(IntIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableIntIntMap.withoutKey
(int key) Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableIntIntMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableIntIntMapModifier and TypeClassDescriptionclass
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
A synchronized view of aMutableIntIntMap
.class
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableIntIntMapModifier and TypeMethodDescriptionIntIntHashMap.asSynchronized()
SynchronizedIntIntMap.asSynchronized()
UnmodifiableIntIntMap.asSynchronized()
IntIntHashMap.asUnmodifiable()
SynchronizedIntIntMap.asUnmodifiable()
UnmodifiableIntIntMap.asUnmodifiable()
MutableIntIntMapFactoryImpl.empty()
IntIntHashMap.flipUniqueValues()
SynchronizedIntIntMap.flipUniqueValues()
UnmodifiableIntIntMap.flipUniqueValues()
<T> MutableIntIntMap
MutableIntIntMapFactoryImpl.from
(Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) MutableIntIntMapFactoryImpl.of()
MutableIntIntMapFactoryImpl.of
(int key, int value) MutableIntIntMapFactoryImpl.of
(int key1, int value1, int key2, int value2) MutableIntIntMapFactoryImpl.of
(int key1, int value1, int key2, int value2, int key3, int value3) MutableIntIntMapFactoryImpl.of
(int key1, int value1, int key2, int value2, int key3, int value3, int key4, int value4) MutableIntIntMapFactoryImpl.ofInitialCapacity
(int capacity) SynchronizedIntIntMap.reject
(IntIntPredicate predicate) UnmodifiableIntIntMap.reject
(IntIntPredicate predicate) SynchronizedIntIntMap.select
(IntIntPredicate predicate) UnmodifiableIntIntMap.select
(IntIntPredicate predicate) MutableIntIntMapFactoryImpl.with()
MutableIntIntMapFactoryImpl.with
(int key, int value) MutableIntIntMapFactoryImpl.with
(int key1, int value1, int key2, int value2) MutableIntIntMapFactoryImpl.with
(int key1, int value1, int key2, int value2, int key3, int value3) MutableIntIntMapFactoryImpl.with
(int key1, int value1, int key2, int value2, int key3, int value3, int key4, int value4) MutableIntIntMapFactoryImpl.withInitialCapacity
(int capacity) SynchronizedIntIntMap.withKeyValue
(int key, int value) UnmodifiableIntIntMap.withKeyValue
(int key, int value) SynchronizedIntIntMap.withoutAllKeys
(IntIterable keys) UnmodifiableIntIntMap.withoutAllKeys
(IntIterable keys) SynchronizedIntIntMap.withoutKey
(int key) UnmodifiableIntIntMap.withoutKey
(int key) Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableIntIntMap