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