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