| Package | Description |
|---|---|
| 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 |
|---|---|
IntObjectMap<V> |
IntObjectMap.reject(IntObjectPredicate<? super V> predicate)
Return a copy of this map containing only the key/value pairs that do not match the
predicate.
|
MutableIntObjectMap<V> |
MutableIntObjectMap.reject(IntObjectPredicate<? super V> predicate) |
ImmutableIntObjectMap<V> |
ImmutableIntObjectMap.reject(IntObjectPredicate<? super V> predicate) |
boolean |
MutableIntObjectMap.removeIf(IntObjectPredicate<? super V> predicate)
Remove an entry from the map if the
predicate evaluates to true. |
IntObjectMap<V> |
IntObjectMap.select(IntObjectPredicate<? super V> predicate)
Return a copy of this map containing only the key/value pairs that match the predicate.
|
MutableIntObjectMap<V> |
MutableIntObjectMap.select(IntObjectPredicate<? super V> predicate) |
ImmutableIntObjectMap<V> |
ImmutableIntObjectMap.select(IntObjectPredicate<? super V> predicate) |
Copyright © 2004–2023. All rights reserved.