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