Uses of Interface
org.eclipse.collections.api.map.primitive.MutableLongDoubleMap
Packages that use MutableLongDoubleMap
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 MutableLongDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableLongDoubleMapModifier and TypeMethodDescriptionMutableLongDoubleMapFactory.empty()MutableLongDoubleMapFactory.from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableLongDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongDoubleMapFactory.of()Same asMutableLongDoubleMapFactory.empty().default MutableLongDoubleMapMutableLongDoubleMapFactory.of(long key, double value) default MutableLongDoubleMapMutableLongDoubleMapFactory.of(long key1, double value1, long key2, double value2) default MutableLongDoubleMapMutableLongDoubleMapFactory.of(long key1, double value1, long key2, double value2, long key3, double value3) default MutableLongDoubleMapMutableLongDoubleMapFactory.of(long key1, double value1, long key2, double value2, long key3, double value3, long key4, double value4) MutableLongDoubleMapFactory.ofAll(LongDoubleMap map) MutableLongDoubleMapFactory.ofInitialCapacity(int capacity) Same asMutableLongDoubleMapFactory.empty(). but takes in an initial capacityMutableLongDoubleMapFactory.with()Same asMutableLongDoubleMapFactory.empty().default MutableLongDoubleMapMutableLongDoubleMapFactory.with(long key, double value) default MutableLongDoubleMapMutableLongDoubleMapFactory.with(long key1, double value1, long key2, double value2) default MutableLongDoubleMapMutableLongDoubleMapFactory.with(long key1, double value1, long key2, double value2, long key3, double value3) default MutableLongDoubleMapMutableLongDoubleMapFactory.with(long key1, double value1, long key2, double value2, long key3, double value3, long key4, double value4) MutableLongDoubleMapFactory.withAll(LongDoubleMap map) MutableLongDoubleMapFactory.withInitialCapacity(int capacity) Same asMutableLongDoubleMapFactory.empty(). but takes in an initial capacity -
Uses of MutableLongDoubleMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableLongDoubleMapModifier and TypeMethodDescriptionMutableLongDoubleMap.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.MutableLongDoubleMap.asUnmodifiable()Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationExceptionfor all mutating operations.MutableDoubleLongMap.flipUniqueValues()MutableLongDoubleMap.reject(LongDoublePredicate predicate) MutableLongDoubleMap.select(LongDoublePredicate predicate) default MutableLongDoubleMapMutableLongDoubleMap.withAllKeyValues(Iterable<LongDoublePair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableLongDoubleMap.withKeyValue(long key, double value) Associates a value with the specified key.MutableLongDoubleMap.withoutAllKeys(LongIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableLongDoubleMap.withoutKey(long key) Removes the mapping associated with the key, if one exists, from this map.