| 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 |
|---|---|
MutableShortIntMap |
MutableShortIntMapFactory.empty() |
<T> MutableShortIntMap |
MutableShortIntMapFactory.from(Iterable<T> iterable,
ShortFunction<? super T> keyFunction,
IntFunction<? super T> valueFunction)
Creates an
MutableShortIntMap from an Iterable<T> by applying keyFunction and valueFunction. |
MutableShortIntMap |
MutableShortIntMapFactory.of()
Same as
MutableShortIntMapFactory.empty(). |
MutableShortIntMap |
MutableShortIntMapFactory.ofAll(ShortIntMap map)
|
MutableShortIntMap |
MutableShortIntMapFactory.ofInitialCapacity(int capacity)
Same as
MutableShortIntMapFactory.empty(). |
MutableShortIntMap |
MutableShortIntMapFactory.with()
Same as
MutableShortIntMapFactory.empty(). |
MutableShortIntMap |
MutableShortIntMapFactory.withAll(ShortIntMap map) |
MutableShortIntMap |
MutableShortIntMapFactory.withInitialCapacity(int capacity)
Same as
MutableShortIntMapFactory.empty(). |
| Modifier and Type | Method and Description |
|---|---|
MutableShortIntMap |
MutableShortIntMap.asSynchronized() |
MutableShortIntMap |
MutableShortIntMap.asUnmodifiable() |
MutableShortIntMap |
MutableIntShortMap.flipUniqueValues() |
MutableShortIntMap |
MutableShortIntMap.reject(ShortIntPredicate predicate) |
MutableShortIntMap |
MutableShortIntMap.select(ShortIntPredicate predicate) |
default MutableShortIntMap |
MutableShortIntMap.withAllKeyValues(Iterable<ShortIntPair> keyValuePairs) |
MutableShortIntMap |
MutableShortIntMap.withKeyValue(short key,
int value) |
MutableShortIntMap |
MutableShortIntMap.withoutAllKeys(ShortIterable keys) |
MutableShortIntMap |
MutableShortIntMap.withoutKey(short key) |
Copyright © 2004–2019. All rights reserved.