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