| 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.
|
| Modifier and Type | Method and Description |
|---|---|
MutableIntDoubleMap |
MutableIntDoubleMapFactory.empty() |
<T> MutableIntDoubleMap |
MutableIntDoubleMapFactory.from(Iterable<T> iterable,
IntFunction<? super T> keyFunction,
DoubleFunction<? super T> valueFunction)
Creates an
MutableIntDoubleMap from an Iterable<T> by applying keyFunction and valueFunction. |
MutableIntDoubleMap |
MutableIntDoubleMapFactory.of()
Same as
MutableIntDoubleMapFactory.empty(). |
MutableIntDoubleMap |
MutableIntDoubleMapFactory.ofAll(IntDoubleMap map)
|
MutableIntDoubleMap |
MutableIntDoubleMapFactory.ofInitialCapacity(int capacity)
Same as
MutableIntDoubleMapFactory.empty(). |
MutableIntDoubleMap |
MutableIntDoubleMapFactory.with()
Same as
MutableIntDoubleMapFactory.empty(). |
MutableIntDoubleMap |
MutableIntDoubleMapFactory.withAll(IntDoubleMap map) |
MutableIntDoubleMap |
MutableIntDoubleMapFactory.withInitialCapacity(int capacity)
Same as
MutableIntDoubleMapFactory.empty(). |
| Modifier and Type | Method and Description |
|---|---|
MutableIntDoubleMap |
MutableIntDoubleMap.asSynchronized() |
MutableIntDoubleMap |
MutableIntDoubleMap.asUnmodifiable() |
MutableIntDoubleMap |
MutableDoubleIntMap.flipUniqueValues() |
MutableIntDoubleMap |
MutableIntDoubleMap.reject(IntDoublePredicate predicate) |
MutableIntDoubleMap |
MutableIntDoubleMap.select(IntDoublePredicate predicate) |
default MutableIntDoubleMap |
MutableIntDoubleMap.withAllKeyValues(Iterable<IntDoublePair> keyValuePairs) |
MutableIntDoubleMap |
MutableIntDoubleMap.withKeyValue(int key,
double value) |
MutableIntDoubleMap |
MutableIntDoubleMap.withoutAllKeys(IntIterable keys) |
MutableIntDoubleMap |
MutableIntDoubleMap.withoutKey(int key) |
Copyright © 2004–2020. All rights reserved.