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