Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.ByteObjectPredicate
Packages that use ByteObjectPredicate
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 ByteObjectPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ByteObjectPredicateModifier and TypeMethodDescriptionByteObjectMap.reject(ByteObjectPredicate<? super V> predicate) Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableByteObjectMap.reject(ByteObjectPredicate<? super V> predicate) MutableByteObjectMap.reject(ByteObjectPredicate<? super V> predicate) booleanMutableByteObjectMap.removeIf(ByteObjectPredicate<? super V> predicate) Remove an entry from the map if thepredicateevaluates to true.ByteObjectMap.select(ByteObjectPredicate<? super V> predicate) Return a copy of this map containing only the key/value pairs that match the predicate.ImmutableByteObjectMap.select(ByteObjectPredicate<? super V> predicate) MutableByteObjectMap.select(ByteObjectPredicate<? super V> predicate)