Uses of Interface
org.eclipse.collections.api.map.primitive.MutableLongDoubleMap
Package | Description |
---|---|
org.eclipse.collections.api.factory.map.primitive | |
org.eclipse.collections.api.map.primitive |
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
|
org.eclipse.collections.impl.map.mutable.primitive |
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 MutableLongDoubleMap Modifier and Type Method Description MutableLongDoubleMap
MutableLongDoubleMapFactory. empty()
<T> MutableLongDoubleMap
MutableLongDoubleMapFactory. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anMutableLongDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableLongDoubleMap
MutableLongDoubleMapFactory. of()
Same asMutableLongDoubleMapFactory.empty()
.MutableLongDoubleMap
MutableLongDoubleMapFactory. ofAll(LongDoubleMap map)
MutableLongDoubleMap
MutableLongDoubleMapFactory. ofInitialCapacity(int capacity)
Same asMutableLongDoubleMapFactory.empty()
.MutableLongDoubleMap
MutableLongDoubleMapFactory. with()
Same asMutableLongDoubleMapFactory.empty()
.MutableLongDoubleMap
MutableLongDoubleMapFactory. withAll(LongDoubleMap map)
MutableLongDoubleMap
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 MutableLongDoubleMap Modifier and Type Method Description MutableLongDoubleMap
MutableLongDoubleMap. 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
MutableLongDoubleMap. asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableLongDoubleMap
MutableDoubleLongMap. flipUniqueValues()
MutableLongDoubleMap
MutableLongDoubleMap. reject(LongDoublePredicate predicate)
MutableLongDoubleMap
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
MutableLongDoubleMap. withKeyValue(long key, double value)
Associates a value with the specified key.MutableLongDoubleMap
MutableLongDoubleMap. withoutAllKeys(LongIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableLongDoubleMap
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 MutableLongDoubleMap Modifier and Type Class Description class
LongDoubleHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
SynchronizedLongDoubleMap
A synchronized view of aMutableLongDoubleMap
.class
UnmodifiableLongDoubleMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableLongDoubleMap Modifier and Type Method Description MutableLongDoubleMap
LongDoubleHashMap. asSynchronized()
MutableLongDoubleMap
SynchronizedLongDoubleMap. asSynchronized()
MutableLongDoubleMap
UnmodifiableLongDoubleMap. asSynchronized()
MutableLongDoubleMap
LongDoubleHashMap. asUnmodifiable()
MutableLongDoubleMap
SynchronizedLongDoubleMap. asUnmodifiable()
MutableLongDoubleMap
UnmodifiableLongDoubleMap. asUnmodifiable()
MutableLongDoubleMap
MutableLongDoubleMapFactoryImpl. empty()
MutableLongDoubleMap
DoubleLongHashMap. flipUniqueValues()
MutableLongDoubleMap
SynchronizedDoubleLongMap. flipUniqueValues()
MutableLongDoubleMap
UnmodifiableDoubleLongMap. flipUniqueValues()
<T> MutableLongDoubleMap
MutableLongDoubleMapFactoryImpl. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
MutableLongDoubleMap
MutableLongDoubleMapFactoryImpl. of()
MutableLongDoubleMap
MutableLongDoubleMapFactoryImpl. ofAll(LongDoubleMap map)
MutableLongDoubleMap
MutableLongDoubleMapFactoryImpl. ofInitialCapacity(int capacity)
MutableLongDoubleMap
SynchronizedLongDoubleMap. reject(LongDoublePredicate predicate)
MutableLongDoubleMap
UnmodifiableLongDoubleMap. reject(LongDoublePredicate predicate)
MutableLongDoubleMap
SynchronizedLongDoubleMap. select(LongDoublePredicate predicate)
MutableLongDoubleMap
UnmodifiableLongDoubleMap. select(LongDoublePredicate predicate)
MutableLongDoubleMap
MutableLongDoubleMapFactoryImpl. with()
MutableLongDoubleMap
MutableLongDoubleMapFactoryImpl. withAll(LongDoubleMap map)
MutableLongDoubleMap
MutableLongDoubleMapFactoryImpl. withInitialCapacity(int capacity)
MutableLongDoubleMap
SynchronizedLongDoubleMap. withKeyValue(long key, double value)
MutableLongDoubleMap
UnmodifiableLongDoubleMap. withKeyValue(long key, double value)
MutableLongDoubleMap
SynchronizedLongDoubleMap. withoutAllKeys(LongIterable keys)
MutableLongDoubleMap
UnmodifiableLongDoubleMap. withoutAllKeys(LongIterable keys)
MutableLongDoubleMap
SynchronizedLongDoubleMap. withoutKey(long key)
MutableLongDoubleMap
UnmodifiableLongDoubleMap. withoutKey(long key)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableLongDoubleMap Constructor Description SynchronizedLongDoubleMap(MutableLongDoubleMap map)
SynchronizedLongDoubleMap(MutableLongDoubleMap map, Object newLock)
UnmodifiableLongDoubleMap(MutableLongDoubleMap map)