Uses of Interface
org.eclipse.collections.api.map.primitive.MutableShortDoubleMap
Packages that use MutableShortDoubleMap
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 MutableShortDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableShortDoubleMapModifier and TypeMethodDescriptionMutableShortDoubleMapFactory.empty()
MutableShortDoubleMapFactory.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableShortDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.MutableShortDoubleMapFactory.of()
Same asMutableShortDoubleMapFactory.empty()
.default MutableShortDoubleMap
MutableShortDoubleMapFactory.of
(short key, double value) default MutableShortDoubleMap
MutableShortDoubleMapFactory.of
(short key1, double value1, short key2, double value2) default MutableShortDoubleMap
MutableShortDoubleMapFactory.of
(short key1, double value1, short key2, double value2, short key3, double value3) default MutableShortDoubleMap
MutableShortDoubleMapFactory.of
(short key1, double value1, short key2, double value2, short key3, double value3, short key4, double value4) MutableShortDoubleMapFactory.ofAll
(ShortDoubleMap map) MutableShortDoubleMapFactory.ofInitialCapacity
(int capacity) Same asMutableShortDoubleMapFactory.empty()
.MutableShortDoubleMapFactory.with()
Same asMutableShortDoubleMapFactory.empty()
.default MutableShortDoubleMap
MutableShortDoubleMapFactory.with
(short key, double value) default MutableShortDoubleMap
MutableShortDoubleMapFactory.with
(short key1, double value1, short key2, double value2) default MutableShortDoubleMap
MutableShortDoubleMapFactory.with
(short key1, double value1, short key2, double value2, short key3, double value3) default MutableShortDoubleMap
MutableShortDoubleMapFactory.with
(short key1, double value1, short key2, double value2, short key3, double value3, short key4, double value4) MutableShortDoubleMapFactory.withAll
(ShortDoubleMap map) MutableShortDoubleMapFactory.withInitialCapacity
(int capacity) Same asMutableShortDoubleMapFactory.empty()
. -
Uses of MutableShortDoubleMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableShortDoubleMapModifier and TypeMethodDescriptionMutableShortDoubleMap.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.MutableShortDoubleMap.asUnmodifiable()
Returns an unmodifiable view of this map, delegating all read-only operations to this map and throwing anUnsupportedOperationException
for all mutating operations.MutableDoubleShortMap.flipUniqueValues()
MutableShortDoubleMap.reject
(ShortDoublePredicate predicate) MutableShortDoubleMap.select
(ShortDoublePredicate predicate) default MutableShortDoubleMap
MutableShortDoubleMap.withAllKeyValues
(Iterable<ShortDoublePair> keyValuePairs) Puts all of the key/value mappings from the specified pairs into this map.MutableShortDoubleMap.withKeyValue
(short key, double value) Associates a value with the specified key.MutableShortDoubleMap.withoutAllKeys
(ShortIterable keys) Removes the mappings associated with all the keys, if they exist, from this map.MutableShortDoubleMap.withoutKey
(short key) Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableShortDoubleMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableShortDoubleMapModifier and TypeClassDescriptionclass
This file was automatically generated from template file primitivePrimitiveHashMap.stg.class
A synchronized view of aMutableShortDoubleMap
.class
This file was automatically generated from template file unmodifiablePrimitivePrimitiveMap.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableShortDoubleMapModifier and TypeMethodDescriptionShortDoubleHashMap.asSynchronized()
SynchronizedShortDoubleMap.asSynchronized()
UnmodifiableShortDoubleMap.asSynchronized()
ShortDoubleHashMap.asUnmodifiable()
SynchronizedShortDoubleMap.asUnmodifiable()
UnmodifiableShortDoubleMap.asUnmodifiable()
MutableShortDoubleMapFactoryImpl.empty()
DoubleShortHashMap.flipUniqueValues()
SynchronizedDoubleShortMap.flipUniqueValues()
UnmodifiableDoubleShortMap.flipUniqueValues()
MutableShortDoubleMapFactoryImpl.from
(Iterable<T> iterable, ShortFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) MutableShortDoubleMapFactoryImpl.of()
MutableShortDoubleMapFactoryImpl.of
(short key, double value) MutableShortDoubleMapFactoryImpl.of
(short key1, double value1, short key2, double value2) MutableShortDoubleMapFactoryImpl.of
(short key1, double value1, short key2, double value2, short key3, double value3) MutableShortDoubleMapFactoryImpl.of
(short key1, double value1, short key2, double value2, short key3, double value3, short key4, double value4) MutableShortDoubleMapFactoryImpl.ofAll
(ShortDoubleMap map) MutableShortDoubleMapFactoryImpl.ofInitialCapacity
(int capacity) SynchronizedShortDoubleMap.reject
(ShortDoublePredicate predicate) UnmodifiableShortDoubleMap.reject
(ShortDoublePredicate predicate) SynchronizedShortDoubleMap.select
(ShortDoublePredicate predicate) UnmodifiableShortDoubleMap.select
(ShortDoublePredicate predicate) MutableShortDoubleMapFactoryImpl.with()
MutableShortDoubleMapFactoryImpl.with
(short key, double value) MutableShortDoubleMapFactoryImpl.with
(short key1, double value1, short key2, double value2) MutableShortDoubleMapFactoryImpl.with
(short key1, double value1, short key2, double value2, short key3, double value3) MutableShortDoubleMapFactoryImpl.with
(short key1, double value1, short key2, double value2, short key3, double value3, short key4, double value4) MutableShortDoubleMapFactoryImpl.withAll
(ShortDoubleMap map) MutableShortDoubleMapFactoryImpl.withInitialCapacity
(int capacity) SynchronizedShortDoubleMap.withKeyValue
(short key, double value) UnmodifiableShortDoubleMap.withKeyValue
(short key, double value) SynchronizedShortDoubleMap.withoutAllKeys
(ShortIterable keys) UnmodifiableShortDoubleMap.withoutAllKeys
(ShortIterable keys) SynchronizedShortDoubleMap.withoutKey
(short key) UnmodifiableShortDoubleMap.withoutKey
(short key) Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableShortDoubleMapModifierConstructorDescriptionSynchronizedShortDoubleMap
(MutableShortDoubleMap map, Object newLock)