Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.CharObjectPredicate
Packages that use CharObjectPredicate
Package
Description
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
-
Uses of CharObjectPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type CharObjectPredicateModifier and TypeMethodDescriptionCharObjectMap.reject(CharObjectPredicate<? super V> predicate) Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableCharObjectMap.reject(CharObjectPredicate<? super V> predicate) MutableCharObjectMap.reject(CharObjectPredicate<? super V> predicate) booleanMutableCharObjectMap.removeIf(CharObjectPredicate<? super V> predicate) Remove an entry from the map if thepredicateevaluates to true.CharObjectMap.select(CharObjectPredicate<? super V> predicate) Return a copy of this map containing only the key/value pairs that match the predicate.ImmutableCharObjectMap.select(CharObjectPredicate<? super V> predicate) MutableCharObjectMap.select(CharObjectPredicate<? super V> predicate)