| 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 |
|---|---|
MutableCharBooleanMap |
MutableCharBooleanMapFactory.empty() |
<T> MutableCharBooleanMap |
MutableCharBooleanMapFactory.from(Iterable<T> iterable,
CharFunction<? super T> keyFunction,
BooleanFunction<? super T> valueFunction)
Creates an
MutableCharBooleanMap from an Iterable<T> by applying keyFunction and valueFunction. |
MutableCharBooleanMap |
MutableCharBooleanMapFactory.of()
Same as
MutableCharBooleanMapFactory.empty(). |
MutableCharBooleanMap |
MutableCharBooleanMapFactory.ofAll(CharBooleanMap map)
|
MutableCharBooleanMap |
MutableCharBooleanMapFactory.ofInitialCapacity(int capacity)
Same as
MutableCharBooleanMapFactory.empty(). |
MutableCharBooleanMap |
MutableCharBooleanMapFactory.with()
Same as
MutableCharBooleanMapFactory.empty(). |
MutableCharBooleanMap |
MutableCharBooleanMapFactory.withAll(CharBooleanMap map) |
MutableCharBooleanMap |
MutableCharBooleanMapFactory.withInitialCapacity(int capacity)
Same as
MutableCharBooleanMapFactory.empty(). |
| Modifier and Type | Method and Description |
|---|---|
MutableCharBooleanMap |
MutableCharBooleanMap.asSynchronized() |
MutableCharBooleanMap |
MutableCharBooleanMap.asUnmodifiable() |
MutableCharBooleanMap |
MutableCharBooleanMap.reject(CharBooleanPredicate predicate) |
MutableCharBooleanMap |
MutableCharBooleanMap.select(CharBooleanPredicate predicate) |
default MutableCharBooleanMap |
MutableCharBooleanMap.withAllKeyValues(Iterable<CharBooleanPair> keyValuePairs) |
MutableCharBooleanMap |
MutableCharBooleanMap.withKeyValue(char key,
boolean value) |
MutableCharBooleanMap |
MutableCharBooleanMap.withoutAllKeys(CharIterable keys) |
MutableCharBooleanMap |
MutableCharBooleanMap.withoutKey(char key) |
Copyright © 2004–2020. All rights reserved.