| 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 |
|---|---|
MutableIntBooleanMap |
MutableIntBooleanMapFactory.empty() |
<T> MutableIntBooleanMap |
MutableIntBooleanMapFactory.from(Iterable<T> iterable,
IntFunction<? super T> keyFunction,
BooleanFunction<? super T> valueFunction)
Creates an
MutableIntBooleanMap from an Iterable<T> by applying keyFunction and valueFunction. |
MutableIntBooleanMap |
MutableIntBooleanMapFactory.of()
Same as
MutableIntBooleanMapFactory.empty(). |
MutableIntBooleanMap |
MutableIntBooleanMapFactory.ofAll(IntBooleanMap map)
|
MutableIntBooleanMap |
MutableIntBooleanMapFactory.ofInitialCapacity(int capacity)
Same as
MutableIntBooleanMapFactory.empty(). |
MutableIntBooleanMap |
MutableIntBooleanMapFactory.with()
Same as
MutableIntBooleanMapFactory.empty(). |
MutableIntBooleanMap |
MutableIntBooleanMapFactory.withAll(IntBooleanMap map) |
MutableIntBooleanMap |
MutableIntBooleanMapFactory.withInitialCapacity(int capacity)
Same as
MutableIntBooleanMapFactory.empty(). |
| Modifier and Type | Method and Description |
|---|---|
MutableIntBooleanMap |
MutableIntBooleanMap.asSynchronized() |
MutableIntBooleanMap |
MutableIntBooleanMap.asUnmodifiable() |
MutableIntBooleanMap |
MutableIntBooleanMap.reject(IntBooleanPredicate predicate) |
MutableIntBooleanMap |
MutableIntBooleanMap.select(IntBooleanPredicate predicate) |
default MutableIntBooleanMap |
MutableIntBooleanMap.withAllKeyValues(Iterable<IntBooleanPair> keyValuePairs) |
MutableIntBooleanMap |
MutableIntBooleanMap.withKeyValue(int key,
boolean value) |
MutableIntBooleanMap |
MutableIntBooleanMap.withoutAllKeys(IntIterable keys) |
MutableIntBooleanMap |
MutableIntBooleanMap.withoutKey(int key) |
Copyright © 2004–2019. All rights reserved.