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.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
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 anMutableDoubleLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableDoubleLongMapFactory.of()
Same asMutableDoubleLongMapFactory.empty()
.default MutableDoubleLongMap
MutableDoubleLongMapFactory.of
(double key, long value) default MutableDoubleLongMap
MutableDoubleLongMapFactory.of
(double key1, long value1, double key2, long value2) default MutableDoubleLongMap
MutableDoubleLongMapFactory.of
(double key1, long value1, double key2, long value2, double key3, long value3) default MutableDoubleLongMap
MutableDoubleLongMapFactory.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()
.MutableDoubleLongMapFactory.with()
Same asMutableDoubleLongMapFactory.empty()
.default MutableDoubleLongMap
MutableDoubleLongMapFactory.with
(double key, long value) default MutableDoubleLongMap
MutableDoubleLongMapFactory.with
(double key1, long value1, double key2, long value2) default MutableDoubleLongMap
MutableDoubleLongMapFactory.with
(double key1, long value1, double key2, long value2, double key3, long value3) default MutableDoubleLongMap
MutableDoubleLongMapFactory.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()
. -
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 anUnsupportedOperationException
for all mutating operations.MutableLongDoubleMap.flipUniqueValues()
MutableDoubleLongMap.reject
(DoubleLongPredicate predicate) MutableDoubleLongMap.select
(DoubleLongPredicate predicate) default MutableDoubleLongMap
MutableDoubleLongMap.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. -
Uses of MutableDoubleLongMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableDoubleLongMapModifier and TypeClassDescriptionclass
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
A synchronized view of aMutableDoubleLongMap
.class
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableDoubleLongMapModifier and TypeMethodDescriptionDoubleLongHashMap.asSynchronized()
SynchronizedDoubleLongMap.asSynchronized()
UnmodifiableDoubleLongMap.asSynchronized()
DoubleLongHashMap.asUnmodifiable()
SynchronizedDoubleLongMap.asUnmodifiable()
UnmodifiableDoubleLongMap.asUnmodifiable()
MutableDoubleLongMapFactoryImpl.empty()
LongDoubleHashMap.flipUniqueValues()
SynchronizedLongDoubleMap.flipUniqueValues()
UnmodifiableLongDoubleMap.flipUniqueValues()
MutableDoubleLongMapFactoryImpl.from
(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, LongFunction<? super T> valueFunction) MutableDoubleLongMapFactoryImpl.of()
MutableDoubleLongMapFactoryImpl.of
(double key, long value) MutableDoubleLongMapFactoryImpl.of
(double key1, long value1, double key2, long value2) MutableDoubleLongMapFactoryImpl.of
(double key1, long value1, double key2, long value2, double key3, long value3) MutableDoubleLongMapFactoryImpl.of
(double key1, long value1, double key2, long value2, double key3, long value3, double key4, long value4) MutableDoubleLongMapFactoryImpl.ofAll
(DoubleLongMap map) MutableDoubleLongMapFactoryImpl.ofInitialCapacity
(int capacity) SynchronizedDoubleLongMap.reject
(DoubleLongPredicate predicate) UnmodifiableDoubleLongMap.reject
(DoubleLongPredicate predicate) SynchronizedDoubleLongMap.select
(DoubleLongPredicate predicate) UnmodifiableDoubleLongMap.select
(DoubleLongPredicate predicate) MutableDoubleLongMapFactoryImpl.with()
MutableDoubleLongMapFactoryImpl.with
(double key, long value) MutableDoubleLongMapFactoryImpl.with
(double key1, long value1, double key2, long value2) MutableDoubleLongMapFactoryImpl.with
(double key1, long value1, double key2, long value2, double key3, long value3) MutableDoubleLongMapFactoryImpl.with
(double key1, long value1, double key2, long value2, double key3, long value3, double key4, long value4) MutableDoubleLongMapFactoryImpl.withAll
(DoubleLongMap map) MutableDoubleLongMapFactoryImpl.withInitialCapacity
(int capacity) SynchronizedDoubleLongMap.withKeyValue
(double key, long value) UnmodifiableDoubleLongMap.withKeyValue
(double key, long value) SynchronizedDoubleLongMap.withoutAllKeys
(DoubleIterable keys) UnmodifiableDoubleLongMap.withoutAllKeys
(DoubleIterable keys) SynchronizedDoubleLongMap.withoutKey
(double key) UnmodifiableDoubleLongMap.withoutKey
(double key) Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableDoubleLongMapModifierConstructorDescriptionSynchronizedDoubleLongMap
(MutableDoubleLongMap map, Object newLock)