Uses of Interface
org.eclipse.collections.api.map.primitive.MutableIntShortMap
Packages that use MutableIntShortMap
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 MutableIntShortMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableIntShortMapModifier and TypeMethodDescriptionMutableIntShortMapFactory.empty()MutableIntShortMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableIntShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntShortMapFactory.of()Same asMutableIntShortMapFactory.empty().default MutableIntShortMapMutableIntShortMapFactory.of(int key, short value) default MutableIntShortMapMutableIntShortMapFactory.of(int key1, short value1, int key2, short value2) default MutableIntShortMapMutableIntShortMapFactory.of(int key1, short value1, int key2, short value2, int key3, short value3) default MutableIntShortMapMutableIntShortMapFactory.of(int key1, short value1, int key2, short value2, int key3, short value3, int key4, short value4) MutableIntShortMapFactory.ofAll(IntShortMap map) MutableIntShortMapFactory.ofInitialCapacity(int capacity) Same asMutableIntShortMapFactory.empty(). but takes in an initial capacityMutableIntShortMapFactory.with()Same asMutableIntShortMapFactory.empty().default MutableIntShortMapMutableIntShortMapFactory.with(int key, short value) default MutableIntShortMapMutableIntShortMapFactory.with(int key1, short value1, int key2, short value2) default MutableIntShortMapMutableIntShortMapFactory.with(int key1, short value1, int key2, short value2, int key3, short value3) default MutableIntShortMapMutableIntShortMapFactory.with(int key1, short value1, int key2, short value2, int key3, short value3, int key4, short value4) MutableIntShortMapFactory.withAll(IntShortMap map) MutableIntShortMapFactory.withInitialCapacity(int capacity) Same asMutableIntShortMapFactory.empty(). but takes in an initial capacity -
Uses of MutableIntShortMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableIntShortMapModifier and TypeMethodDescriptionMutableIntShortMap.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.MutableIntShortMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableShortIntMap.flipUniqueValues()MutableIntShortMap.reject(IntShortPredicate predicate) MutableIntShortMap.select(IntShortPredicate predicate) default MutableIntShortMapMutableIntShortMap.withAllKeyValues(Iterable<IntShortPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableIntShortMap.withKeyValue(int key, short value) Associates a value with the specified key.MutableIntShortMap.withoutAllKeys(IntIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableIntShortMap.withoutKey(int key) Removes the mapping associated with the key, if one exists, from this map.