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