Uses of Interface
org.eclipse.collections.api.map.primitive.MutableDoubleIntMap
Packages that use MutableDoubleIntMap
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 MutableDoubleIntMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableDoubleIntMapModifier and TypeMethodDescriptionMutableDoubleIntMapFactory.empty()MutableDoubleIntMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleIntMapFactory.of()Same asMutableDoubleIntMapFactory.empty().default MutableDoubleIntMapMutableDoubleIntMapFactory.of(double key, int value) default MutableDoubleIntMapMutableDoubleIntMapFactory.of(double key1, int value1, double key2, int value2) default MutableDoubleIntMapMutableDoubleIntMapFactory.of(double key1, int value1, double key2, int value2, double key3, int value3) default MutableDoubleIntMapMutableDoubleIntMapFactory.of(double key1, int value1, double key2, int value2, double key3, int value3, double key4, int value4) MutableDoubleIntMapFactory.ofAll(DoubleIntMap map) MutableDoubleIntMapFactory.ofInitialCapacity(int capacity) Same asMutableDoubleIntMapFactory.empty(). but takes in an initial capacityMutableDoubleIntMapFactory.with()Same asMutableDoubleIntMapFactory.empty().default MutableDoubleIntMapMutableDoubleIntMapFactory.with(double key, int value) default MutableDoubleIntMapMutableDoubleIntMapFactory.with(double key1, int value1, double key2, int value2) default MutableDoubleIntMapMutableDoubleIntMapFactory.with(double key1, int value1, double key2, int value2, double key3, int value3) default MutableDoubleIntMapMutableDoubleIntMapFactory.with(double key1, int value1, double key2, int value2, double key3, int value3, double key4, int value4) MutableDoubleIntMapFactory.withAll(DoubleIntMap map) MutableDoubleIntMapFactory.withInitialCapacity(int capacity) Same asMutableDoubleIntMapFactory.empty(). but takes in an initial capacity -
Uses of MutableDoubleIntMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableDoubleIntMapModifier and TypeMethodDescriptionMutableDoubleIntMap.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.MutableDoubleIntMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableIntDoubleMap.flipUniqueValues()MutableDoubleIntMap.reject(DoubleIntPredicate predicate) MutableDoubleIntMap.select(DoubleIntPredicate predicate) default MutableDoubleIntMapMutableDoubleIntMap.withAllKeyValues(Iterable<DoubleIntPair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableDoubleIntMap.withKeyValue(double key, int value) Associates a value with the specified key.MutableDoubleIntMap.withoutAllKeys(DoubleIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableDoubleIntMap.withoutKey(double key) Removes the mapping associated with the key, if one exists, from this map.