Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.IntObjectPredicate
-
Packages that use IntObjectPredicate 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 IntObjectPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type IntObjectPredicate Modifier and Type Method Description ImmutableIntObjectMap<V>ImmutableIntObjectMap. reject(IntObjectPredicate<? super V> predicate)IntObjectMap<V>IntObjectMap. reject(IntObjectPredicate<? super V> predicate)Return a copy of this map containing only the key/value pairs that do not match the predicate.MutableIntObjectMap<V>MutableIntObjectMap. reject(IntObjectPredicate<? super V> predicate)booleanMutableIntObjectMap. removeIf(IntObjectPredicate<? super V> predicate)Remove an entry from the map if thepredicateevaluates to true.ImmutableIntObjectMap<V>ImmutableIntObjectMap. select(IntObjectPredicate<? super V> predicate)IntObjectMap<V>IntObjectMap. select(IntObjectPredicate<? super V> predicate)Return a copy of this map containing only the key/value pairs that match the predicate.MutableIntObjectMap<V>MutableIntObjectMap. select(IntObjectPredicate<? super V> predicate)
-