Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.IntPredicate
Packages that use IntPredicate
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains interfaces for SortedBag API.
This package contains mutable and immutable primitive collection API.
This package contains mutable and immutable primitive list API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains API for mutable and immutable primitive sets.
This package contains mutable and immutable primitive stack API.
-
Uses of IntPredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type IntPredicateModifier and TypeMethodDescriptionbooleanIntIterable.allSatisfy(IntPredicate predicate) Returns true if all of the elements in the IntIterable return true for the specified predicate, otherwise returns false.booleanIntIterable.anySatisfy(IntPredicate predicate) Returns true if any of the elements in the IntIterable return true for the specified predicate, otherwise returns false.intIntIterable.count(IntPredicate predicate) Returns a count of the number of elements in the IntIterable that return true for the specified predicate.intIntIterable.detectIfNone(IntPredicate predicate, int ifNone) default booleanIntIterable.noneSatisfy(IntPredicate predicate) Returns true if none of the elements in the IntIterable return true for the specified predicate, otherwise returns false.IntIterable.reject(IntPredicate predicate) Returns a new IntIterable with all of the elements in the IntIterable that return false for the specified predicate.default <R extends MutableIntCollection>
RIntIterable.reject(IntPredicate predicate, R target) Same asIntIterable.reject(IntPredicate), only the results are added to the target MutableIntCollection.LazyIntIterable.reject(IntPredicate predicate) IntIterable.select(IntPredicate predicate) Returns a new IntIterable with all of the elements in the IntIterable that return true for the specified predicate.default <R extends MutableIntCollection>
RIntIterable.select(IntPredicate predicate, R target) Same asIntIterable.select(IntPredicate), only the results are added to the target MutableIntCollection.LazyIntIterable.select(IntPredicate predicate) -
Uses of IntPredicate in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type IntPredicateModifier and TypeMethodDescriptionBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableBag.selectByOccurrences(IntPredicate predicate) ImmutableBagIterable.selectByOccurrences(IntPredicate predicate) MutableBag.selectByOccurrences(IntPredicate predicate) MutableBagIterable.selectByOccurrences(IntPredicate predicate) UnsortedBag.selectByOccurrences(IntPredicate predicate) -
Uses of IntPredicate in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive with parameters of type IntPredicateModifier and TypeMethodDescriptionImmutableIntBag.reject(IntPredicate predicate) IntBag.reject(IntPredicate predicate) MutableIntBag.reject(IntPredicate predicate) ImmutableIntBag.select(IntPredicate predicate) IntBag.select(IntPredicate predicate) MutableIntBag.select(IntPredicate predicate) BooleanBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ByteBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.CharBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.DoubleBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.FloatBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableBooleanBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableByteBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableCharBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableDoubleBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableFloatBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableIntBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableLongBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableShortBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.IntBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.LongBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableBooleanBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableByteBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableCharBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableDoubleBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableFloatBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableIntBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableLongBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableShortBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ShortBag.selectByOccurrences(IntPredicate predicate) Returns all elements of the bag that have a number of occurrences that satisfy the predicate. -
Uses of IntPredicate in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type IntPredicateModifier and TypeMethodDescriptionImmutableSortedBag.selectByOccurrences(IntPredicate predicate) MutableSortedBag.selectByOccurrences(IntPredicate predicate) SortedBag.selectByOccurrences(IntPredicate predicate) -
Uses of IntPredicate in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive with parameters of type IntPredicateModifier and TypeMethodDescriptionImmutableIntCollection.reject(IntPredicate predicate) MutableIntCollection.reject(IntPredicate predicate) default booleanMutableIntCollection.removeIf(IntPredicate predicate) ImmutableIntCollection.select(IntPredicate predicate) MutableIntCollection.select(IntPredicate predicate) -
Uses of IntPredicate in org.eclipse.collections.api.list.primitive
Methods in org.eclipse.collections.api.list.primitive with parameters of type IntPredicateModifier and TypeMethodDescriptionImmutableIntList.reject(IntPredicate predicate) IntList.reject(IntPredicate predicate) MutableIntList.reject(IntPredicate predicate) ImmutableIntList.select(IntPredicate predicate) IntList.select(IntPredicate predicate) MutableIntList.select(IntPredicate predicate) -
Uses of IntPredicate in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type IntPredicateModifier and TypeMethodDescriptionImmutableByteIntMap.reject(IntPredicate predicate) ImmutableCharIntMap.reject(IntPredicate predicate) ImmutableDoubleIntMap.reject(IntPredicate predicate) ImmutableFloatIntMap.reject(IntPredicate predicate) ImmutableIntIntMap.reject(IntPredicate predicate) ImmutableLongIntMap.reject(IntPredicate predicate) ImmutableObjectIntMap.reject(IntPredicate predicate) ImmutableShortIntMap.reject(IntPredicate predicate) IntValuesMap.reject(IntPredicate predicate) MutableIntValuesMap.reject(IntPredicate predicate) MutableObjectIntMap.reject(IntPredicate predicate) ImmutableByteIntMap.select(IntPredicate predicate) ImmutableCharIntMap.select(IntPredicate predicate) ImmutableDoubleIntMap.select(IntPredicate predicate) ImmutableFloatIntMap.select(IntPredicate predicate) ImmutableIntIntMap.select(IntPredicate predicate) ImmutableLongIntMap.select(IntPredicate predicate) ImmutableObjectIntMap.select(IntPredicate predicate) ImmutableShortIntMap.select(IntPredicate predicate) IntValuesMap.select(IntPredicate predicate) MutableIntValuesMap.select(IntPredicate predicate) MutableObjectIntMap.select(IntPredicate predicate) -
Uses of IntPredicate in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with parameters of type IntPredicateModifier and TypeMethodDescriptionOrderedIntIterable.reject(IntPredicate predicate) ReversibleIntIterable.reject(IntPredicate predicate) OrderedIntIterable.select(IntPredicate predicate) ReversibleIntIterable.select(IntPredicate predicate) -
Uses of IntPredicate in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive with parameters of type IntPredicateModifier and TypeMethodDescriptionImmutableIntSet.reject(IntPredicate predicate) IntSet.reject(IntPredicate predicate) MutableIntSet.reject(IntPredicate predicate) ImmutableIntSet.select(IntPredicate predicate) IntSet.select(IntPredicate predicate) MutableIntSet.select(IntPredicate predicate) -
Uses of IntPredicate in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive with parameters of type IntPredicateModifier and TypeMethodDescriptionImmutableIntStack.reject(IntPredicate predicate) IntStack.reject(IntPredicate predicate) MutableIntStack.reject(IntPredicate predicate) ImmutableIntStack.select(IntPredicate predicate) IntStack.select(IntPredicate predicate) MutableIntStack.select(IntPredicate predicate)