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