Uses of Interface
org.eclipse.collections.api.map.primitive.MutableObjectDoubleMap
-
Packages that use MutableObjectDoubleMap Package Description org.eclipse.collections.api.collection org.eclipse.collections.api.factory.map.primitive org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
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.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction
,Predicate
,SerializableComparator
andProcedure
.org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.map This package contains implementations of theMapIterable
interface.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMap
interface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.parallel This package contains classes which is used for parallel iteration through the containers.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
-
Uses of MutableObjectDoubleMap in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return MutableObjectDoubleMap Modifier and Type Method Description <V> MutableObjectDoubleMap<V>
MutableCollection. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
MutableCollection. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of MutableObjectDoubleMap in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive that return MutableObjectDoubleMap Modifier and Type Method Description <K> MutableObjectDoubleMap<K>
MutableObjectDoubleHashingStrategyMapFactory. empty(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactory. empty()
<T,K>
MutableObjectDoubleMap<K>MutableObjectDoubleMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anMutableObjectDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<K> MutableObjectDoubleMap<K>
MutableObjectDoubleHashingStrategyMapFactory. of(HashingStrategy<? super K> hashingStrategy)
Same as#empty()
.<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactory. of()
default <K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactory. of(K key, double value)
default <K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactory. of(K key1, double value1, K key2, double value2)
default <K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactory. of(K key1, double value1, K key2, double value2, K key3, double value3)
default <K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactory. of(K key1, double value1, K key2, double value2, K key3, double value3, K key4, double value4)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactory. ofAll(ObjectDoubleMap<? extends K> map)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactory. ofInitialCapacity(int capacity)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleHashingStrategyMapFactory. with(HashingStrategy<? super K> hashingStrategy)
Same as#empty()
.<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactory. with()
default <K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactory. with(K key, double value)
default <K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactory. with(K key1, double value1, K key2, double value2)
default <K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactory. with(K key1, double value1, K key2, double value2, K key3, double value3)
default <K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactory. with(K key1, double value1, K key2, double value2, K key3, double value3, K key4, double value4)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactory. withAll(ObjectDoubleMap<? extends K> map)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleHashingStrategyMapFactory. withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity)
Same as#empty()
but takes in an initial capacity<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactory. withInitialCapacity(int capacity)
-
Uses of MutableObjectDoubleMap in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableObjectDoubleMap Modifier and Type Method Description <V1> MutableObjectDoubleMap<V1>
MutableMapIterable. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
MutableMapIterable. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
-
Uses of MutableObjectDoubleMap in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableObjectDoubleMap Modifier and Type Method Description MutableObjectDoubleMap<K>
MutableObjectDoubleMap. asSynchronized()
MutableObjectDoubleMap<K>
MutableObjectDoubleMap. asUnmodifiable()
MutableObjectDoubleMap<V>
MutableDoubleObjectMap. flipUniqueValues()
MutableObjectDoubleMap<K>
MutableObjectDoubleMap. reject(ObjectDoublePredicate<? super K> predicate)
MutableObjectDoubleMap<K>
MutableObjectDoubleMap. select(ObjectDoublePredicate<? super K> predicate)
<VV> MutableObjectDoubleMap<VV>
MutablePrimitiveObjectMap. sumByDouble(Function<? super V,? extends VV> groupBy, DoubleFunction<? super V> function)
<VV> MutableObjectDoubleMap<VV>
MutablePrimitiveObjectMap. sumByFloat(Function<? super V,? extends VV> groupBy, FloatFunction<? super V> function)
default MutableObjectDoubleMap<K>
MutableObjectDoubleMap. tap(DoubleProcedure procedure)
default MutableObjectDoubleMap<K>
MutableObjectDoubleMap. withAllKeyValues(java.lang.Iterable<ObjectDoublePair<K>> keyValuePairs)
MutableObjectDoubleMap<K>
MutableObjectDoubleMap. withKeyValue(K key, double value)
Associates a value with the specified key.MutableObjectDoubleMap<K>
MutableObjectDoubleMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
Removes the mappings associated with all the keys, if they exist, from this map.MutableObjectDoubleMap<K>
MutableObjectDoubleMap. withoutKey(K key)
Removes the mapping associated with the key, if one exists, from this map. -
Uses of MutableObjectDoubleMap in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return MutableObjectDoubleMap Modifier and Type Method Description <V> MutableObjectDoubleMap<V>
MutableStack. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
MutableStack. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of MutableObjectDoubleMap in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable that return MutableObjectDoubleMap Modifier and Type Method Description <V> MutableObjectDoubleMap<V>
AbstractMutableBagIterable. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
AbstractMutableBagIterable. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of MutableObjectDoubleMap in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable that return MutableObjectDoubleMap Modifier and Type Method Description <V1> MutableObjectDoubleMap<V1>
AbstractMutableBiMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableBiMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
AbstractMutableBiMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableBiMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
-
Uses of MutableObjectDoubleMap in org.eclipse.collections.impl.block.factory
Methods in org.eclipse.collections.impl.block.factory that return types with arguments of type MutableObjectDoubleMap Modifier and Type Method Description static <T,V>
Function2<MutableObjectDoubleMap<V>,T,MutableObjectDoubleMap<V>>PrimitiveFunctions. sumByDoubleFunction(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
static <T,V>
Function2<MutableObjectDoubleMap<V>,T,MutableObjectDoubleMap<V>>PrimitiveFunctions. sumByDoubleFunction(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
static <T,V>
Function2<MutableObjectDoubleMap<V>,T,MutableObjectDoubleMap<V>>PrimitiveFunctions. sumByFloatFunction(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
static <T,V>
Function2<MutableObjectDoubleMap<V>,T,MutableObjectDoubleMap<V>>PrimitiveFunctions. sumByFloatFunction(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of MutableObjectDoubleMap in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable that return MutableObjectDoubleMap Modifier and Type Method Description <V> MutableObjectDoubleMap<V>
AbstractCollectionAdapter. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
AbstractMultiReaderMutableCollection. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
AbstractMultiReaderMutableCollection.UntouchableMutableCollection. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
AbstractMutableCollection. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
AbstractSynchronizedMutableCollection. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
AbstractUnmodifiableMutableCollection. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
AbstractCollectionAdapter. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
AbstractMultiReaderMutableCollection. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
AbstractMultiReaderMutableCollection.UntouchableMutableCollection. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
AbstractMutableCollection. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
AbstractSynchronizedMutableCollection. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
AbstractUnmodifiableMutableCollection. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of MutableObjectDoubleMap in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector that return types with arguments of type MutableObjectDoubleMap Modifier and Type Method Description static <T,V>
java.util.stream.Collector<T,?,MutableObjectDoubleMap<V>>Collectors2. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
Groups and sums the values using the two specified functions.static <T,V>
java.util.stream.Collector<T,?,MutableObjectDoubleMap<V>>Collectors2. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
Groups and sums the values using the two specified functions. -
Uses of MutableObjectDoubleMap in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable that return MutableObjectDoubleMap Modifier and Type Method Description <V> MutableObjectDoubleMap<V>
FastList. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
FastList. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of MutableObjectDoubleMap in org.eclipse.collections.impl.map
Methods in org.eclipse.collections.impl.map that return MutableObjectDoubleMap Modifier and Type Method Description <V1> MutableObjectDoubleMap<V1>
AbstractSynchronizedMapIterable. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
AbstractSynchronizedMapIterable. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
-
Uses of MutableObjectDoubleMap in org.eclipse.collections.impl.map.immutable.primitive
Fields in org.eclipse.collections.impl.map.immutable.primitive declared as MutableObjectDoubleMap Modifier and Type Field Description private MutableObjectDoubleMap<K>
ImmutableObjectDoubleHashMap. delegate
-
Uses of MutableObjectDoubleMap in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable that return MutableObjectDoubleMap Modifier and Type Method Description <V1> MutableObjectDoubleMap<V1>
AbstractMutableMapIterable. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableMutableMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
AbstractMutableMapIterable. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableMutableMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
-
Uses of MutableObjectDoubleMap in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableObjectDoubleMap Modifier and Type Class Description class
ObjectDoubleHashMap<K>
This file was automatically generated from template file objectPrimitiveHashMap.stg.class
ObjectDoubleHashMapWithHashingStrategy<K>
This file was automatically generated from template file objectPrimitiveHashMapWithHashingStrategy.stg.class
SynchronizedObjectDoubleMap<K>
A synchronized view of aMutableObjectDoubleMap
.class
UnmodifiableObjectDoubleMap<K>
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.Fields in org.eclipse.collections.impl.map.mutable.primitive declared as MutableObjectDoubleMap Modifier and Type Field Description private MutableObjectDoubleMap<K>
SynchronizedObjectDoubleMap. map
private MutableObjectDoubleMap<K>
UnmodifiableObjectDoubleMap. map
Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableObjectDoubleMap Modifier and Type Method Description MutableObjectDoubleMap<K>
ObjectDoubleHashMap. asSynchronized()
MutableObjectDoubleMap<K>
ObjectDoubleHashMapWithHashingStrategy. asSynchronized()
MutableObjectDoubleMap<K>
SynchronizedObjectDoubleMap. asSynchronized()
MutableObjectDoubleMap<K>
UnmodifiableObjectDoubleMap. asSynchronized()
MutableObjectDoubleMap<K>
ObjectDoubleHashMap. asUnmodifiable()
MutableObjectDoubleMap<K>
ObjectDoubleHashMapWithHashingStrategy. asUnmodifiable()
MutableObjectDoubleMap<K>
SynchronizedObjectDoubleMap. asUnmodifiable()
MutableObjectDoubleMap<K>
UnmodifiableObjectDoubleMap. asUnmodifiable()
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleHashingStrategyMapFactoryImpl. empty(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactoryImpl. empty()
MutableObjectDoubleMap<V>
DoubleObjectHashMap. flipUniqueValues()
MutableObjectDoubleMap<V>
SynchronizedDoubleObjectMap. flipUniqueValues()
MutableObjectDoubleMap<V>
UnmodifiableDoubleObjectMap. flipUniqueValues()
<T,K>
MutableObjectDoubleMap<K>MutableObjectDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, DoubleFunction<? super T> valueFunction)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleHashingStrategyMapFactoryImpl. of(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactoryImpl. of()
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactoryImpl. of(K key, double value)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactoryImpl. of(K key1, double value1, K key2, double value2)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactoryImpl. of(K key1, double value1, K key2, double value2, K key3, double value3)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactoryImpl. of(K key1, double value1, K key2, double value2, K key3, double value3, K key4, double value4)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactoryImpl. ofAll(ObjectDoubleMap<? extends K> map)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactoryImpl. ofInitialCapacity(int capacity)
MutableObjectDoubleMap<K>
SynchronizedObjectDoubleMap. reject(ObjectDoublePredicate<? super K> predicate)
MutableObjectDoubleMap<K>
UnmodifiableObjectDoubleMap. reject(ObjectDoublePredicate<? super K> predicate)
MutableObjectDoubleMap<K>
SynchronizedObjectDoubleMap. select(ObjectDoublePredicate<? super K> predicate)
MutableObjectDoubleMap<K>
UnmodifiableObjectDoubleMap. select(ObjectDoublePredicate<? super K> predicate)
<V1> MutableObjectDoubleMap<V1>
ByteObjectHashMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
CharObjectHashMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
DoubleObjectHashMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
FloatObjectHashMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
IntObjectHashMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
LongObjectHashMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
ShortObjectHashMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedByteObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedCharObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedDoubleObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedFloatObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedIntObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedLongObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedShortObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableByteObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableCharObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableDoubleObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableFloatObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableIntObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableLongObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableShortObjectMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
ByteObjectHashMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
CharObjectHashMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
DoubleObjectHashMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
FloatObjectHashMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
IntObjectHashMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
LongObjectHashMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
ShortObjectHashMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedByteObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedCharObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedDoubleObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedFloatObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedIntObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedLongObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
SynchronizedShortObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableByteObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableCharObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableDoubleObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableFloatObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableIntObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableLongObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableShortObjectMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleHashingStrategyMapFactoryImpl. with(HashingStrategy<? super K> hashingStrategy)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactoryImpl. with()
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactoryImpl. with(K key, double value)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactoryImpl. with(K key1, double value1, K key2, double value2)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactoryImpl. with(K key1, double value1, K key2, double value2, K key3, double value3)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactoryImpl. with(K key1, double value1, K key2, double value2, K key3, double value3, K key4, double value4)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactoryImpl. withAll(ObjectDoubleMap<? extends K> map)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleHashingStrategyMapFactoryImpl. withInitialCapacity(HashingStrategy<? super K> hashingStrategy, int initialCapacity)
<K> MutableObjectDoubleMap<K>
MutableObjectDoubleMapFactoryImpl. withInitialCapacity(int capacity)
MutableObjectDoubleMap<K>
SynchronizedObjectDoubleMap. withKeyValue(K key, double value)
MutableObjectDoubleMap<K>
UnmodifiableObjectDoubleMap. withKeyValue(K key, double value)
MutableObjectDoubleMap<K>
SynchronizedObjectDoubleMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
MutableObjectDoubleMap<K>
UnmodifiableObjectDoubleMap. withoutAllKeys(java.lang.Iterable<? extends K> keys)
MutableObjectDoubleMap<K>
SynchronizedObjectDoubleMap. withoutKey(K key)
MutableObjectDoubleMap<K>
UnmodifiableObjectDoubleMap. withoutKey(K key)
Constructors in org.eclipse.collections.impl.map.mutable.primitive with parameters of type MutableObjectDoubleMap Constructor Description SynchronizedObjectDoubleMap(MutableObjectDoubleMap<K> map)
SynchronizedObjectDoubleMap(MutableObjectDoubleMap<K> map, java.lang.Object newLock)
UnmodifiableObjectDoubleMap(MutableObjectDoubleMap<K> map)
-
Uses of MutableObjectDoubleMap in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable that return MutableObjectDoubleMap Modifier and Type Method Description <V1> MutableObjectDoubleMap<V1>
OrderedMapAdapter. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<VV> MutableObjectDoubleMap<VV>
UnmodifiableMutableOrderedMap. sumByDouble(Function<? super V,? extends VV> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
OrderedMapAdapter. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
<VV> MutableObjectDoubleMap<VV>
UnmodifiableMutableOrderedMap. sumByFloat(Function<? super V,? extends VV> groupBy, FloatFunction<? super V> function)
-
Uses of MutableObjectDoubleMap in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable that return MutableObjectDoubleMap Modifier and Type Method Description <V1> MutableObjectDoubleMap<V1>
UnmodifiableTreeMap. sumByDouble(Function<? super V,? extends V1> groupBy, DoubleFunction<? super V> function)
<V1> MutableObjectDoubleMap<V1>
UnmodifiableTreeMap. sumByFloat(Function<? super V,? extends V1> groupBy, FloatFunction<? super V> function)
-
Uses of MutableObjectDoubleMap in org.eclipse.collections.impl.parallel
Fields in org.eclipse.collections.impl.parallel declared as MutableObjectDoubleMap Modifier and Type Field Description private MutableObjectDoubleMap<V>
ParallelIterate.SumByDoubleCombiner. compensation
private MutableObjectDoubleMap<V>
ParallelIterate.SumByFloatCombiner. compensation
private MutableObjectDoubleMap<V>
ParallelIterate.SumByDoubleCombiner. result
private MutableObjectDoubleMap<V>
ParallelIterate.SumByFloatCombiner. result
Constructors in org.eclipse.collections.impl.parallel with parameters of type MutableObjectDoubleMap Constructor Description SumByDoubleCombiner(MutableObjectDoubleMap<V> result)
SumByFloatCombiner(MutableObjectDoubleMap<V> result)
-
Uses of MutableObjectDoubleMap in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable that return MutableObjectDoubleMap Modifier and Type Method Description <V> MutableObjectDoubleMap<V>
ArrayStack. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
SynchronizedStack. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
UnmodifiableStack. sumByDouble(Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
ArrayStack. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
SynchronizedStack. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
<V> MutableObjectDoubleMap<V>
UnmodifiableStack. sumByFloat(Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-
Uses of MutableObjectDoubleMap in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal that return MutableObjectDoubleMap Modifier and Type Method Description static <V,T>
MutableObjectDoubleMap<V>InternalArrayIterate. sumByDouble(T[] array, int size, Function<? super T,? extends V> groupBy, DoubleFunction<? super T> function)
static <V,T>
MutableObjectDoubleMap<V>InternalArrayIterate. sumByFloat(T[] array, int size, Function<? super T,? extends V> groupBy, FloatFunction<? super T> function)
-