| 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 |
|---|---|
MutableIntLongMap |
MutableIntLongMapFactory.empty() |
<T> MutableIntLongMap |
MutableIntLongMapFactory.from(Iterable<T> iterable,
IntFunction<? super T> keyFunction,
LongFunction<? super T> valueFunction)
Creates an
MutableIntLongMap from an Iterable<T> by applying keyFunction and valueFunction. |
MutableIntLongMap |
MutableIntLongMapFactory.of()
Same as
MutableIntLongMapFactory.empty(). |
MutableIntLongMap |
MutableIntLongMapFactory.ofAll(IntLongMap map)
|
MutableIntLongMap |
MutableIntLongMapFactory.ofInitialCapacity(int capacity)
Same as
MutableIntLongMapFactory.empty(). |
MutableIntLongMap |
MutableIntLongMapFactory.with()
Same as
MutableIntLongMapFactory.empty(). |
MutableIntLongMap |
MutableIntLongMapFactory.withAll(IntLongMap map) |
MutableIntLongMap |
MutableIntLongMapFactory.withInitialCapacity(int capacity)
Same as
MutableIntLongMapFactory.empty(). |
| Modifier and Type | Method and Description |
|---|---|
MutableIntLongMap |
MutableIntLongMap.asSynchronized() |
MutableIntLongMap |
MutableIntLongMap.asUnmodifiable() |
MutableIntLongMap |
MutableLongIntMap.flipUniqueValues() |
MutableIntLongMap |
MutableIntLongMap.reject(IntLongPredicate predicate) |
MutableIntLongMap |
MutableIntLongMap.select(IntLongPredicate predicate) |
default MutableIntLongMap |
MutableIntLongMap.withAllKeyValues(Iterable<IntLongPair> keyValuePairs) |
MutableIntLongMap |
MutableIntLongMap.withKeyValue(int key,
long value) |
MutableIntLongMap |
MutableIntLongMap.withoutAllKeys(IntIterable keys) |
MutableIntLongMap |
MutableIntLongMap.withoutKey(int key) |
Copyright © 2004–2019. All rights reserved.