Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.ObjectIntPredicate
-
Packages that use ObjectIntPredicate Package Description org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList.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.org.eclipse.collections.api.ordered -
-
Uses of ObjectIntPredicate in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type ObjectIntPredicate Modifier and Type Method Description booleanBag. allSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)Returns true if the predicate evaluates to true for all elements of the Bag.booleanBag. anySatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)Returns true if the predicate evaluates to true for any element of the Bag.TBag. detectWithOccurrences(ObjectIntPredicate<? super T> predicate)Returns an element of the Bag that satisfies the predicate or null if such an element does not existbooleanBag. noneSatisfyWithOccurrences(ObjectIntPredicate<? super T> predicate)Returns true if the Bag is empty or if the predicate evaluates to false for all elements of the Bag. -
Uses of ObjectIntPredicate in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list with parameters of type ObjectIntPredicate Modifier and Type Method Description default ImmutableList<T>ImmutableList. rejectWithIndex(ObjectIntPredicate<? super T> predicate)Returns a new ImmutableList with all elements of the collection that return false when evaluating the specified predicate which is supplied each element and its relative index.default ListIterable<T>ListIterable. rejectWithIndex(ObjectIntPredicate<? super T> predicate)Returns a new ListIterable with all elements of the collection that return false when evaluating the specified predicate which is supplied each element and its relative index.default MutableList<T>MutableList. rejectWithIndex(ObjectIntPredicate<? super T> predicate)Returns a new MutableList with all elements of the collection that return false when evaluating the specified predicate which is supplied each element and its relative index.default ImmutableList<T>ImmutableList. selectWithIndex(ObjectIntPredicate<? super T> predicate)Returns a new ImmutableList with all elements of the collection that return true when evaluating the specified predicate which is supplied each element and its relative index.default ListIterable<T>ListIterable. selectWithIndex(ObjectIntPredicate<? super T> predicate)Returns a new ListIterable with all elements of the collection that return true when evaluating the specified predicate which is supplied each element and its relative index.default MutableList<T>MutableList. selectWithIndex(ObjectIntPredicate<? super T> predicate)Returns a new MutableList with all elements of the collection that return true when evaluating the specified predicate which is supplied each element and its relative index. -
Uses of ObjectIntPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type ObjectIntPredicate Modifier and Type Method Description ImmutableObjectIntMap<K>ImmutableObjectIntMap. reject(ObjectIntPredicate<? super K> predicate)MutableObjectIntMap<K>MutableObjectIntMap. reject(ObjectIntPredicate<? super K> predicate)ObjectIntMap<K>ObjectIntMap. reject(ObjectIntPredicate<? super K> predicate)Return a copy of this map containing only the key/value pairs that do not match the predicate.ImmutableObjectIntMap<K>ImmutableObjectIntMap. select(ObjectIntPredicate<? super K> predicate)MutableObjectIntMap<K>MutableObjectIntMap. select(ObjectIntPredicate<? super K> predicate)ObjectIntMap<K>ObjectIntMap. select(ObjectIntPredicate<? super K> predicate)Return a copy of this map containing only the key/value pairs that match the predicate. -
Uses of ObjectIntPredicate in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type ObjectIntPredicate Modifier and Type Method Description default <R extends Collection<T>>
ROrderedIterable. rejectWithIndex(ObjectIntPredicate<? super T> predicate, R target)Adds all elements to the target Collection that return false when evaluating the specified predicate which is supplied each element and its relative index.default <R extends Collection<T>>
ROrderedIterable. selectWithIndex(ObjectIntPredicate<? super T> predicate, R target)Adds all elements to the target Collection that return true when evaluating the specified predicate which is supplied each element and its relative index.
-