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