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