Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.ObjectLongPredicate
Packages that use ObjectLongPredicate
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 ObjectLongPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ObjectLongPredicateModifier and TypeMethodDescriptiondefault booleanObjectLongMap.allSatisfyKeyValue(ObjectLongPredicate<K> predicate) ImmutableObjectLongMap.reject(ObjectLongPredicate<? super K> predicate) MutableObjectLongMap.reject(ObjectLongPredicate<? super K> predicate) ObjectLongMap.reject(ObjectLongPredicate<? super K> predicate) Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableObjectLongMap.select(ObjectLongPredicate<? super K> predicate) MutableObjectLongMap.select(ObjectLongPredicate<? super K> predicate) ObjectLongMap.select(ObjectLongPredicate<? super K> predicate) Return a copy of this map containing only the key/value pairs that match the predicate.