Uses of Interface
org.eclipse.collections.api.map.primitive.MutableIntDoubleMap
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 MutableIntDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableIntDoubleMap Modifier and Type Method Description MutableIntDoubleMap
MutableIntDoubleMapFactory. empty()
<T> MutableIntDoubleMap
MutableIntDoubleMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anMutableIntDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableIntDoubleMap
MutableIntDoubleMapFactory. of()
Same asMutableIntDoubleMapFactory.empty()
.MutableIntDoubleMap
MutableIntDoubleMapFactory. ofAll(IntDoubleMap map)
MutableIntDoubleMap
MutableIntDoubleMapFactory. ofInitialCapacity(int capacity)
Same asMutableIntDoubleMapFactory.empty()
.MutableIntDoubleMap
MutableIntDoubleMapFactory. with()
Same asMutableIntDoubleMapFactory.empty()
.MutableIntDoubleMap
MutableIntDoubleMapFactory. withAll(IntDoubleMap map)
MutableIntDoubleMap
MutableIntDoubleMapFactory. withInitialCapacity(int capacity)
Same asMutableIntDoubleMapFactory.empty()
. -
Uses of MutableIntDoubleMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableIntDoubleMap Modifier and Type Method Description MutableIntDoubleMap
MutableIntDoubleMap. 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.MutableIntDoubleMap
MutableIntDoubleMap. asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableIntDoubleMap
MutableDoubleIntMap. flipUniqueValues()
MutableIntDoubleMap
MutableIntDoubleMap. reject(IntDoublePredicate predicate)
MutableIntDoubleMap
MutableIntDoubleMap. select(IntDoublePredicate predicate)
default MutableIntDoubleMap
MutableIntDoubleMap. withAllKeyValues(Iterable<IntDoublePair> keyValuePairs)
Puts all of the key/value mappings from the specified pairs into this map.MutableIntDoubleMap
MutableIntDoubleMap. withKeyValue(int key, double value)
Associates a value with the specified key.MutableIntDoubleMap
MutableIntDoubleMap. withoutAllKeys(IntIterable keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableIntDoubleMap
MutableIntDoubleMap. withoutKey(int key)
Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableIntDoubleMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableIntDoubleMap Modifier and Type Class Description class
IntDoubleHashMap
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
SynchronizedIntDoubleMap
A synchronized view of aMutableIntDoubleMap
.class
UnmodifiableIntDoubleMap
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableIntDoubleMap Modifier and Type Method Description MutableIntDoubleMap
IntDoubleHashMap. asSynchronized()
MutableIntDoubleMap
SynchronizedIntDoubleMap. asSynchronized()
MutableIntDoubleMap
UnmodifiableIntDoubleMap. asSynchronized()
MutableIntDoubleMap
IntDoubleHashMap. asUnmodifiable()
MutableIntDoubleMap
SynchronizedIntDoubleMap. asUnmodifiable()
MutableIntDoubleMap
UnmodifiableIntDoubleMap. asUnmodifiable()
MutableIntDoubleMap
MutableIntDoubleMapFactoryImpl. empty()
MutableIntDoubleMap
DoubleIntHashMap. flipUniqueValues()
MutableIntDoubleMap
SynchronizedDoubleIntMap. flipUniqueValues()
MutableIntDoubleMap
UnmodifiableDoubleIntMap. flipUniqueValues()
<T> MutableIntDoubleMap
MutableIntDoubleMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
MutableIntDoubleMap
MutableIntDoubleMapFactoryImpl. of()
MutableIntDoubleMap
MutableIntDoubleMapFactoryImpl. ofAll(IntDoubleMap map)
MutableIntDoubleMap
MutableIntDoubleMapFactoryImpl. ofInitialCapacity(int capacity)
MutableIntDoubleMap
SynchronizedIntDoubleMap. reject(IntDoublePredicate predicate)
MutableIntDoubleMap
UnmodifiableIntDoubleMap. reject(IntDoublePredicate predicate)
MutableIntDoubleMap
SynchronizedIntDoubleMap. select(IntDoublePredicate predicate)
MutableIntDoubleMap
UnmodifiableIntDoubleMap. select(IntDoublePredicate predicate)
MutableIntDoubleMap
MutableIntDoubleMapFactoryImpl. with()
MutableIntDoubleMap
MutableIntDoubleMapFactoryImpl. withAll(IntDoubleMap map)
MutableIntDoubleMap
MutableIntDoubleMapFactoryImpl. withInitialCapacity(int capacity)
MutableIntDoubleMap
SynchronizedIntDoubleMap. withKeyValue(int key, double value)
MutableIntDoubleMap
UnmodifiableIntDoubleMap. withKeyValue(int key, double value)
MutableIntDoubleMap
SynchronizedIntDoubleMap. withoutAllKeys(IntIterable keys)
MutableIntDoubleMap
UnmodifiableIntDoubleMap. withoutAllKeys(IntIterable keys)
MutableIntDoubleMap
SynchronizedIntDoubleMap. withoutKey(int key)
MutableIntDoubleMap
UnmodifiableIntDoubleMap. withoutKey(int key)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableIntDoubleMap Constructor Description SynchronizedIntDoubleMap(MutableIntDoubleMap map)
SynchronizedIntDoubleMap(MutableIntDoubleMap map, Object newLock)
UnmodifiableIntDoubleMap(MutableIntDoubleMap map)