Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.ObjectBytePredicate
-
Packages that use ObjectBytePredicate 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 ObjectBytePredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ObjectBytePredicate Modifier and Type Method Description ImmutableObjectByteMap<K>ImmutableObjectByteMap. reject(ObjectBytePredicate<? super K> predicate)MutableObjectByteMap<K>MutableObjectByteMap. reject(ObjectBytePredicate<? super K> predicate)ObjectByteMap<K>ObjectByteMap. reject(ObjectBytePredicate<? super K> predicate)Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableObjectByteMap<K>ImmutableObjectByteMap. select(ObjectBytePredicate<? super K> predicate)MutableObjectByteMap<K>MutableObjectByteMap. select(ObjectBytePredicate<? super K> predicate)ObjectByteMap<K>ObjectByteMap. select(ObjectBytePredicate<? super K> predicate)Return a copy of this map containing only the key/value pairs that match the predicate.
-