Uses of Interface
org.eclipse.collections.api.map.primitive.MutableIntIntMap
-
Packages that use MutableIntIntMap Package Description org.eclipse.collections.api.factory.map.primitive org.eclipse.collections.api.map.primitive 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 MutableIntIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableIntIntMap Modifier and Type Method Description MutableIntIntMapMutableIntIntMapFactory. empty()<T> MutableIntIntMapMutableIntIntMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableIntIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntIntMapMutableIntIntMapFactory. of()Same asMutableIntIntMapFactory.empty().default MutableIntIntMapMutableIntIntMapFactory. of(int key, int value)default MutableIntIntMapMutableIntIntMapFactory. of(int key1, int value1, int key2, int value2)default MutableIntIntMapMutableIntIntMapFactory. of(int key1, int value1, int key2, int value2, int key3, int value3)default MutableIntIntMapMutableIntIntMapFactory. of(int key1, int value1, int key2, int value2, int key3, int value3, int key4, int value4)MutableIntIntMapMutableIntIntMapFactory. ofAll(IntIntMap map)MutableIntIntMapMutableIntIntMapFactory. ofInitialCapacity(int capacity)Same asMutableIntIntMapFactory.empty().MutableIntIntMapMutableIntIntMapFactory. with()Same asMutableIntIntMapFactory.empty().default MutableIntIntMapMutableIntIntMapFactory. with(int key, int value)default MutableIntIntMapMutableIntIntMapFactory. with(int key1, int value1, int key2, int value2)default MutableIntIntMapMutableIntIntMapFactory. with(int key1, int value1, int key2, int value2, int key3, int value3)default MutableIntIntMapMutableIntIntMapFactory. with(int key1, int value1, int key2, int value2, int key3, int value3, int key4, int value4)MutableIntIntMapMutableIntIntMapFactory. withAll(IntIntMap map)MutableIntIntMapMutableIntIntMapFactory. 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 MutableIntIntMap Modifier and Type Method Description MutableIntIntMapMutableIntIntMap. 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.MutableIntIntMapMutableIntIntMap. asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableIntIntMapMutableIntIntMap. flipUniqueValues()MutableIntIntMapMutableIntIntMap. reject(IntIntPredicate predicate)MutableIntIntMapMutableIntIntMap. select(IntIntPredicate predicate)default MutableIntIntMapMutableIntIntMap. withAllKeyValues(Iterable<IntIntPair> keyValuePairs)Puts all of the key/value mappings from the specified pairs into this map.MutableIntIntMapMutableIntIntMap. withKeyValue(int key, int value)Associates a value with the specified key.MutableIntIntMapMutableIntIntMap. withoutAllKeys(IntIterable keys)Removes the mappings associated with all the keys, if they exist, from this map.MutableIntIntMapMutableIntIntMap. withoutKey(int key)Removes the mapping associated with the key, if one exists, from this map.
-