| 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.
|
| Modifier and Type | Method and 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 and 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 and 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 and 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)
Associates a value with the specified key.
|
MutableObjectDoubleMap<K> |
MutableObjectDoubleMap.withoutAllKeys(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.
|
| Modifier and Type | Method and 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) |
Copyright © 2004–2021. All rights reserved.