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