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