| 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 |
|---|---|
MutableLongCharMap |
MutableLongCharMapFactory.empty() |
<T> MutableLongCharMap |
MutableLongCharMapFactory.from(Iterable<T> iterable,
LongFunction<? super T> keyFunction,
CharFunction<? super T> valueFunction)
Creates an
MutableLongCharMap from an Iterable<T> by applying keyFunction and valueFunction. |
MutableLongCharMap |
MutableLongCharMapFactory.of()
Same as
MutableLongCharMapFactory.empty(). |
MutableLongCharMap |
MutableLongCharMapFactory.ofAll(LongCharMap map)
|
MutableLongCharMap |
MutableLongCharMapFactory.ofInitialCapacity(int capacity)
Same as
MutableLongCharMapFactory.empty(). |
MutableLongCharMap |
MutableLongCharMapFactory.with()
Same as
MutableLongCharMapFactory.empty(). |
MutableLongCharMap |
MutableLongCharMapFactory.withAll(LongCharMap map) |
MutableLongCharMap |
MutableLongCharMapFactory.withInitialCapacity(int capacity)
Same as
MutableLongCharMapFactory.empty(). |
| Modifier and Type | Method and Description |
|---|---|
MutableLongCharMap |
MutableLongCharMap.asSynchronized() |
MutableLongCharMap |
MutableLongCharMap.asUnmodifiable() |
MutableLongCharMap |
MutableCharLongMap.flipUniqueValues() |
MutableLongCharMap |
MutableLongCharMap.reject(LongCharPredicate predicate) |
MutableLongCharMap |
MutableLongCharMap.select(LongCharPredicate predicate) |
default MutableLongCharMap |
MutableLongCharMap.withAllKeyValues(Iterable<LongCharPair> keyValuePairs) |
MutableLongCharMap |
MutableLongCharMap.withKeyValue(long key,
char value) |
MutableLongCharMap |
MutableLongCharMap.withoutAllKeys(LongIterable keys) |
MutableLongCharMap |
MutableLongCharMap.withoutKey(long key) |
Copyright © 2004–2019. All rights reserved.