Uses of Interface
org.eclipse.collections.api.map.primitive.MutableDoubleShortMap
Packages that use MutableDoubleShortMap
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 MutableDoubleShortMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableDoubleShortMapModifier and TypeMethodDescriptionMutableDoubleShortMapFactory.empty()MutableDoubleShortMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableDoubleShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleShortMapFactory.of()Same asMutableDoubleShortMapFactory.empty().default MutableDoubleShortMapMutableDoubleShortMapFactory.of(double key, short value) default MutableDoubleShortMapMutableDoubleShortMapFactory.of(double key1, short value1, double key2, short value2) default MutableDoubleShortMapMutableDoubleShortMapFactory.of(double key1, short value1, double key2, short value2, double key3, short value3) default MutableDoubleShortMapMutableDoubleShortMapFactory.of(double key1, short value1, double key2, short value2, double key3, short value3, double key4, short value4) MutableDoubleShortMapFactory.ofAll(DoubleShortMap map) MutableDoubleShortMapFactory.ofInitialCapacity(int capacity) Same asMutableDoubleShortMapFactory.empty(). but takes in an initial capacityMutableDoubleShortMapFactory.with()Same asMutableDoubleShortMapFactory.empty().default MutableDoubleShortMapMutableDoubleShortMapFactory.with(double key, short value) default MutableDoubleShortMapMutableDoubleShortMapFactory.with(double key1, short value1, double key2, short value2) default MutableDoubleShortMapMutableDoubleShortMapFactory.with(double key1, short value1, double key2, short value2, double key3, short value3) default MutableDoubleShortMapMutableDoubleShortMapFactory.with(double key1, short value1, double key2, short value2, double key3, short value3, double key4, short value4) MutableDoubleShortMapFactory.withAll(DoubleShortMap map) MutableDoubleShortMapFactory.withInitialCapacity(int capacity) Same asMutableDoubleShortMapFactory.empty(). but takes in an initial capacity -
Uses of MutableDoubleShortMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableDoubleShortMapModifier and TypeMethodDescriptionMutableDoubleShortMap.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.MutableDoubleShortMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableShortDoubleMap.flipUniqueValues()MutableDoubleShortMap.reject(DoubleShortPredicate predicate) MutableDoubleShortMap.select(DoubleShortPredicate predicate) default MutableDoubleShortMapMutableDoubleShortMap.withAllKeyValues(Iterable<DoubleShortPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableDoubleShortMap.withKeyValue(double key, short value) Associates a value with the specified key.MutableDoubleShortMap.withoutAllKeys(DoubleIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleShortMap.withoutKey(double key) Removes the mapping associated with the key, if one exists, from this map.