Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.CharObjectPredicate
-
Packages that use CharObjectPredicate 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. -
-
Uses of CharObjectPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type CharObjectPredicate Modifier and Type Method Description CharObjectMap<V>CharObjectMap. reject(CharObjectPredicate<? super V> predicate)Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableCharObjectMap<V>ImmutableCharObjectMap. reject(CharObjectPredicate<? super V> predicate)MutableCharObjectMap<V>MutableCharObjectMap. reject(CharObjectPredicate<? super V> predicate)booleanMutableCharObjectMap. removeIf(CharObjectPredicate<? super V> predicate)Remove an entry from the map if thepredicateevaluates to true.CharObjectMap<V>CharObjectMap. select(CharObjectPredicate<? super V> predicate)Return a copy of this map containing only the key/value pairs that match the predicate.ImmutableCharObjectMap<V>ImmutableCharObjectMap. select(CharObjectPredicate<? super V> predicate)MutableCharObjectMap<V>MutableCharObjectMap. select(CharObjectPredicate<? super V> predicate)
-