Uses of Interface
org.eclipse.collections.api.map.primitive.MutableIntLongMap
Packages that use MutableIntLongMap
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 MutableIntLongMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableIntLongMapModifier and TypeMethodDescriptionMutableIntLongMapFactory.empty()MutableIntLongMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) Creates anMutableIntLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntLongMapFactory.of()Same asMutableIntLongMapFactory.empty().default MutableIntLongMapMutableIntLongMapFactory.of(int key, long value) default MutableIntLongMapMutableIntLongMapFactory.of(int key1, long value1, int key2, long value2) default MutableIntLongMapMutableIntLongMapFactory.of(int key1, long value1, int key2, long value2, int key3, long value3) default MutableIntLongMapMutableIntLongMapFactory.of(int key1, long value1, int key2, long value2, int key3, long value3, int key4, long value4) MutableIntLongMapFactory.ofAll(IntLongMap map) MutableIntLongMapFactory.ofInitialCapacity(int capacity) Same asMutableIntLongMapFactory.empty(). but takes in an initial capacityMutableIntLongMapFactory.with()Same asMutableIntLongMapFactory.empty().default MutableIntLongMapMutableIntLongMapFactory.with(int key, long value) default MutableIntLongMapMutableIntLongMapFactory.with(int key1, long value1, int key2, long value2) default MutableIntLongMapMutableIntLongMapFactory.with(int key1, long value1, int key2, long value2, int key3, long value3) default MutableIntLongMapMutableIntLongMapFactory.with(int key1, long value1, int key2, long value2, int key3, long value3, int key4, long value4) MutableIntLongMapFactory.withAll(IntLongMap map) MutableIntLongMapFactory.withInitialCapacity(int capacity) Same asMutableIntLongMapFactory.empty(). but takes in an initial capacity -
Uses of MutableIntLongMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableIntLongMapModifier and TypeMethodDescriptionMutableIntLongMap.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.MutableIntLongMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableLongIntMap.flipUniqueValues()MutableIntLongMap.reject(IntLongPredicate predicate) MutableIntLongMap.select(IntLongPredicate predicate) default MutableIntLongMapMutableIntLongMap.withAllKeyValues(Iterable<IntLongPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableIntLongMap.withKeyValue(int key, long value) Associates a value with the specified key.MutableIntLongMap.withoutAllKeys(IntIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableIntLongMap.withoutKey(int key) Removes the mapping associated with the key, if one exists, from this map.