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 of
Map |
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 the
MutableBag interface. |
org.eclipse.collections.impl.bimap.mutable |
This package contains implementations of the
MutableBiMap interface. |
org.eclipse.collections.impl.block.factory |
This package contains factory implementations for
Function , Predicate , SerializableComparator and Procedure . |
org.eclipse.collections.impl.collection.mutable |
This package contains implementations of the
MutableCollection interface. |
org.eclipse.collections.impl.collector | |
org.eclipse.collections.impl.list.mutable |
This package contains implementations of the
MutableList interface. |
org.eclipse.collections.impl.map |
This package contains implementations of the
MapIterable interface. |
org.eclipse.collections.impl.map.mutable |
This package contains implementations of the
MutableMap 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 the
MutableSortedMap interface. |
org.eclipse.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack interface. |
org.eclipse.collections.impl.utility.internal |
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
|
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) |
Modifier and Type | Method | Description |
---|---|---|
<K> MutableObjectDoubleMap<K> |
MutableObjectDoubleMapFactory.empty() |
|
<T,K> MutableObjectDoubleMap<K> |
MutableObjectDoubleMapFactory.from(Iterable<T> iterable,
Function<? super T,? extends K> keyFunction,
DoubleFunction<? super T> valueFunction) |
Creates an
MutableObjectDoubleMap from an Iterable<T> by applying keyFunction and valueFunction . |
<K> MutableObjectDoubleMap<K> |
MutableObjectDoubleMapFactory.of() |
|
<K> MutableObjectDoubleMap<K> |
MutableObjectDoubleMapFactory.ofAll(ObjectDoubleMap<? extends K> map) |
|
<K> MutableObjectDoubleMap<K> |
MutableObjectDoubleMapFactory.ofInitialCapacity(int capacity) |
|
<K> MutableObjectDoubleMap<K> |
MutableObjectDoubleMapFactory.with() |
|
<K> MutableObjectDoubleMap<K> |
MutableObjectDoubleMapFactory.withAll(ObjectDoubleMap<? extends K> map) |
|
<K> MutableObjectDoubleMap<K> |
MutableObjectDoubleMapFactory.withInitialCapacity(int capacity) |
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) |
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(Iterable<ObjectDoublePair<K>> keyValuePairs) |
|
MutableObjectDoubleMap<K> |
MutableObjectDoubleMap.withKeyValue(K key,
double value) |
|
MutableObjectDoubleMap<K> |
MutableObjectDoubleMap.withoutAllKeys(Iterable<? extends K> keys) |
|
MutableObjectDoubleMap<K> |
MutableObjectDoubleMap.withoutKey(K key) |
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) |
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) |
Modifier and Type | Method | Description |
---|---|---|
<V1> MutableObjectDoubleMap<V1> |
UnmodifiableBiMap.sumByDouble(Function<? super V,? extends V1> groupBy,
DoubleFunction<? super V> function) |
|
<V1> MutableObjectDoubleMap<V1> |
UnmodifiableBiMap.sumByFloat(Function<? super V,? extends V1> groupBy,
FloatFunction<? super V> function) |
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) |
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> |
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> |
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) |
Modifier and Type | Method | Description |
---|---|---|
static <T,V> 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> 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.
|
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) |
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) |
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) |
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 a
MutableObjectDoubleMap . |
class |
UnmodifiableObjectDoubleMap<K> |
This file was automatically generated from template file unmodifiableObjectPrimitiveMap.stg.
|
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> |
MutableObjectDoubleMapFactoryImpl.empty() |
|
MutableObjectDoubleMap<V> |
DoubleObjectHashMap.flipUniqueValues() |
|
MutableObjectDoubleMap<V> |
SynchronizedDoubleObjectMap.flipUniqueValues() |
|
MutableObjectDoubleMap<V> |
UnmodifiableDoubleObjectMap.flipUniqueValues() |
|
<T,K> MutableObjectDoubleMap<K> |
MutableObjectDoubleMapFactoryImpl.from(Iterable<T> iterable,
Function<? super T,? extends K> keyFunction,
DoubleFunction<? super T> valueFunction) |
|
<K> MutableObjectDoubleMap<K> |
MutableObjectDoubleMapFactoryImpl.of() |
|
<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> |
MutableObjectDoubleMapFactoryImpl.with() |
|
<K> MutableObjectDoubleMap<K> |
MutableObjectDoubleMapFactoryImpl.withAll(ObjectDoubleMap<? extends K> map) |
|
<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(Iterable<? extends K> keys) |
|
MutableObjectDoubleMap<K> |
UnmodifiableObjectDoubleMap.withoutAllKeys(Iterable<? extends K> keys) |
|
MutableObjectDoubleMap<K> |
SynchronizedObjectDoubleMap.withoutKey(K key) |
|
MutableObjectDoubleMap<K> |
UnmodifiableObjectDoubleMap.withoutKey(K key) |
Constructor | Description |
---|---|
SynchronizedObjectDoubleMap(MutableObjectDoubleMap<K> map) |
|
SynchronizedObjectDoubleMap(MutableObjectDoubleMap<K> map,
Object newLock) |
|
UnmodifiableObjectDoubleMap(MutableObjectDoubleMap<K> map) |
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) |
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) |
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) |
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) |
Copyright © 2004–2019. All rights reserved.