Uses of Interface
org.eclipse.collections.api.block.predicate.primitive.IntPredicate
-
Packages that use IntPredicate Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.collection.primitive This package contains mutable and immutable primitive collection API.org.eclipse.collections.api.list.primitive This package contains mutable and immutable primitive list API.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.primitive org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets.org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API.org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bag.immutable.primitive This package contains implementations of the immutable primitive bag interfaces.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.bag.strategy.mutable This package contains implementations of bags with user definedHashingStrategy
s.org.eclipse.collections.impl.block.factory.primitive This package contains factory implementations for primitive functions, primitive predicates, primitive procedures and primitive comparators.org.eclipse.collections.impl.block.function.primitive This package contains implementations of primitive functions.org.eclipse.collections.impl.block.procedure.primitive This package contains implementations of primitive procedures.org.eclipse.collections.impl.collection.mutable.primitive This package contains implementations of the mutable primitive collection interfaces.org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.immutable.primitive This package contains implementations of immutable primitive list interfaces and immutable primitive list factory interfaces.org.eclipse.collections.impl.list.mutable.primitive This package contains implementations of the mutable primitive list interfaces.org.eclipse.collections.impl.list.primitive This package contains implementations of the primitive list interfaces.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.primitive org.eclipse.collections.impl.set.immutable.primitive This package contains implementations of the immutable primitive set interfaces.org.eclipse.collections.impl.set.mutable.primitive This package contains implementations of the mutable primitive set interfaces.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive org.eclipse.collections.impl.string.immutable org.eclipse.collections.impl.utility.internal.primitive org.eclipse.collections.impl.utility.primitive -
-
Uses of IntPredicate in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type IntPredicate Modifier and Type Method Description boolean
IntIterable. allSatisfy(IntPredicate predicate)
Returns true if all of the elements in the IntIterable return true for the specified predicate, otherwise returns false.boolean
IntIterable. anySatisfy(IntPredicate predicate)
Returns true if any of the elements in the IntIterable return true for the specified predicate, otherwise returns false.int
IntIterable. count(IntPredicate predicate)
Returns a count of the number of elements in the IntIterable that return true for the specified predicate.int
IntIterable. detectIfNone(IntPredicate predicate, int ifNone)
default boolean
IntIterable. noneSatisfy(IntPredicate predicate)
Returns true if none of the elements in the IntIterable return true for the specified predicate, otherwise returns false.IntIterable
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
LazyIntIterable. reject(IntPredicate predicate)
IntIterable
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
LazyIntIterable. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type IntPredicate Modifier and Type Method Description Bag<T>
Bag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableBag<T>
ImmutableBag. selectByOccurrences(IntPredicate predicate)
ImmutableBagIterable<T>
ImmutableBagIterable. selectByOccurrences(IntPredicate predicate)
MutableBag<T>
MutableBag. selectByOccurrences(IntPredicate predicate)
MutableBagIterable<T>
MutableBagIterable. selectByOccurrences(IntPredicate predicate)
UnsortedBag<T>
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 IntPredicate Modifier and Type Method Description ImmutableIntBag
ImmutableIntBag. reject(IntPredicate predicate)
IntBag
IntBag. reject(IntPredicate predicate)
MutableIntBag
MutableIntBag. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableIntBag. select(IntPredicate predicate)
IntBag
IntBag. select(IntPredicate predicate)
MutableIntBag
MutableIntBag. select(IntPredicate predicate)
BooleanBag
BooleanBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ByteBag
ByteBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.CharBag
CharBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.DoubleBag
DoubleBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.FloatBag
FloatBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableBooleanBag
ImmutableBooleanBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableByteBag
ImmutableByteBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableCharBag
ImmutableCharBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableDoubleBag
ImmutableDoubleBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableFloatBag
ImmutableFloatBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableIntBag
ImmutableIntBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableLongBag
ImmutableLongBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ImmutableShortBag
ImmutableShortBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.IntBag
IntBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.LongBag
LongBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableBooleanBag
MutableBooleanBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableByteBag
MutableByteBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableCharBag
MutableCharBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableDoubleBag
MutableDoubleBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableFloatBag
MutableFloatBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableIntBag
MutableIntBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableLongBag
MutableLongBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.MutableShortBag
MutableShortBag. selectByOccurrences(IntPredicate predicate)
Returns all elements of the bag that have a number of occurrences that satisfy the predicate.ShortBag
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 IntPredicate Modifier and Type Method Description ImmutableSortedBag<T>
ImmutableSortedBag. selectByOccurrences(IntPredicate predicate)
MutableSortedBag<T>
MutableSortedBag. selectByOccurrences(IntPredicate predicate)
SortedBag<T>
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 IntPredicate Modifier and Type Method Description ImmutableIntCollection
ImmutableIntCollection. reject(IntPredicate predicate)
MutableIntCollection
MutableIntCollection. reject(IntPredicate predicate)
default boolean
MutableIntCollection. removeIf(IntPredicate predicate)
ImmutableIntCollection
ImmutableIntCollection. select(IntPredicate predicate)
MutableIntCollection
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 IntPredicate Modifier and Type Method Description ImmutableIntList
ImmutableIntList. reject(IntPredicate predicate)
IntList
IntList. reject(IntPredicate predicate)
MutableIntList
MutableIntList. reject(IntPredicate predicate)
ImmutableIntList
ImmutableIntList. select(IntPredicate predicate)
IntList
IntList. select(IntPredicate predicate)
MutableIntList
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 IntPredicate Modifier and Type Method Description ImmutableIntBag
ImmutableByteIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableCharIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableDoubleIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableFloatIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableIntIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableLongIntMap. reject(IntPredicate predicate)
ImmutableIntCollection
ImmutableObjectIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableShortIntMap. reject(IntPredicate predicate)
IntBag
IntValuesMap. reject(IntPredicate predicate)
MutableIntBag
MutableIntValuesMap. reject(IntPredicate predicate)
MutableIntCollection
MutableObjectIntMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableByteIntMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableCharIntMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableDoubleIntMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableFloatIntMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableIntIntMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableLongIntMap. select(IntPredicate predicate)
ImmutableIntCollection
ImmutableObjectIntMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableShortIntMap. select(IntPredicate predicate)
IntBag
IntValuesMap. select(IntPredicate predicate)
MutableIntBag
MutableIntValuesMap. select(IntPredicate predicate)
MutableIntCollection
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 IntPredicate Modifier and Type Method Description OrderedIntIterable
OrderedIntIterable. reject(IntPredicate predicate)
ReversibleIntIterable
ReversibleIntIterable. reject(IntPredicate predicate)
OrderedIntIterable
OrderedIntIterable. select(IntPredicate predicate)
ReversibleIntIterable
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 IntPredicate Modifier and Type Method Description ImmutableIntSet
ImmutableIntSet. reject(IntPredicate predicate)
IntSet
IntSet. reject(IntPredicate predicate)
MutableIntSet
MutableIntSet. reject(IntPredicate predicate)
ImmutableIntSet
ImmutableIntSet. select(IntPredicate predicate)
IntSet
IntSet. select(IntPredicate predicate)
MutableIntSet
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 IntPredicate Modifier and Type Method Description ImmutableIntStack
ImmutableIntStack. reject(IntPredicate predicate)
IntStack
IntStack. reject(IntPredicate predicate)
MutableIntStack
MutableIntStack. reject(IntPredicate predicate)
ImmutableIntStack
ImmutableIntStack. select(IntPredicate predicate)
IntStack
IntStack. select(IntPredicate predicate)
MutableIntStack
MutableIntStack. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type IntPredicate Modifier and Type Method Description ImmutableBag<T>
ImmutableArrayBag. selectByOccurrences(IntPredicate predicate)
ImmutableBag<T>
ImmutableEmptyBag. selectByOccurrences(IntPredicate predicate)
ImmutableBag<T>
ImmutableHashBag. selectByOccurrences(IntPredicate predicate)
ImmutableBag<T>
ImmutableSingletonBag. selectByOccurrences(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.bag.immutable.primitive
Methods in org.eclipse.collections.impl.bag.immutable.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
ImmutableIntEmptyBag. allSatisfy(IntPredicate predicate)
boolean
ImmutableIntHashBag. allSatisfy(IntPredicate predicate)
boolean
ImmutableIntSingletonBag. allSatisfy(IntPredicate predicate)
boolean
ImmutableIntEmptyBag. anySatisfy(IntPredicate predicate)
boolean
ImmutableIntHashBag. anySatisfy(IntPredicate predicate)
boolean
ImmutableIntSingletonBag. anySatisfy(IntPredicate predicate)
int
ImmutableIntEmptyBag. count(IntPredicate predicate)
int
ImmutableIntHashBag. count(IntPredicate predicate)
int
ImmutableIntSingletonBag. count(IntPredicate predicate)
int
ImmutableIntEmptyBag. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableIntHashBag. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableIntSingletonBag. detectIfNone(IntPredicate predicate, int ifNone)
boolean
ImmutableIntEmptyBag. noneSatisfy(IntPredicate predicate)
boolean
ImmutableIntHashBag. noneSatisfy(IntPredicate predicate)
boolean
ImmutableIntSingletonBag. noneSatisfy(IntPredicate predicate)
ImmutableIntBag
ImmutableIntEmptyBag. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableIntHashBag. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableIntSingletonBag. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableIntEmptyBag. select(IntPredicate predicate)
ImmutableIntBag
ImmutableIntHashBag. select(IntPredicate predicate)
ImmutableIntBag
ImmutableIntSingletonBag. select(IntPredicate predicate)
ImmutableBooleanBag
ImmutableBooleanEmptyBag. selectByOccurrences(IntPredicate predicate)
ImmutableBooleanBag
ImmutableBooleanHashBag. selectByOccurrences(IntPredicate predicate)
ImmutableBooleanBag
ImmutableBooleanSingletonBag. selectByOccurrences(IntPredicate predicate)
ImmutableByteBag
ImmutableByteEmptyBag. selectByOccurrences(IntPredicate predicate)
ImmutableByteBag
ImmutableByteHashBag. selectByOccurrences(IntPredicate predicate)
ImmutableByteBag
ImmutableByteSingletonBag. selectByOccurrences(IntPredicate predicate)
ImmutableCharBag
ImmutableCharEmptyBag. selectByOccurrences(IntPredicate predicate)
ImmutableCharBag
ImmutableCharHashBag. selectByOccurrences(IntPredicate predicate)
ImmutableCharBag
ImmutableCharSingletonBag. selectByOccurrences(IntPredicate predicate)
ImmutableDoubleBag
ImmutableDoubleEmptyBag. selectByOccurrences(IntPredicate predicate)
ImmutableDoubleBag
ImmutableDoubleHashBag. selectByOccurrences(IntPredicate predicate)
ImmutableDoubleBag
ImmutableDoubleSingletonBag. selectByOccurrences(IntPredicate predicate)
ImmutableFloatBag
ImmutableFloatEmptyBag. selectByOccurrences(IntPredicate predicate)
ImmutableFloatBag
ImmutableFloatHashBag. selectByOccurrences(IntPredicate predicate)
ImmutableFloatBag
ImmutableFloatSingletonBag. selectByOccurrences(IntPredicate predicate)
ImmutableIntBag
ImmutableIntEmptyBag. selectByOccurrences(IntPredicate predicate)
ImmutableIntBag
ImmutableIntHashBag. selectByOccurrences(IntPredicate predicate)
ImmutableIntBag
ImmutableIntSingletonBag. selectByOccurrences(IntPredicate predicate)
ImmutableLongBag
ImmutableLongEmptyBag. selectByOccurrences(IntPredicate predicate)
ImmutableLongBag
ImmutableLongHashBag. selectByOccurrences(IntPredicate predicate)
ImmutableLongBag
ImmutableLongSingletonBag. selectByOccurrences(IntPredicate predicate)
ImmutableShortBag
ImmutableShortEmptyBag. selectByOccurrences(IntPredicate predicate)
ImmutableShortBag
ImmutableShortHashBag. selectByOccurrences(IntPredicate predicate)
ImmutableShortBag
ImmutableShortSingletonBag. selectByOccurrences(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type IntPredicate Modifier and Type Method Description MutableBag<T>
HashBag. selectByOccurrences(IntPredicate predicate)
MutableBag<T>
MultiReaderHashBag. selectByOccurrences(IntPredicate predicate)
MutableBag<T>
MultiReaderHashBag.UntouchableMutableBag. selectByOccurrences(IntPredicate predicate)
MutableBag<T>
SynchronizedBag. selectByOccurrences(IntPredicate predicate)
MutableBag<T>
UnmodifiableBag. selectByOccurrences(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.bag.mutable.primitive
-
Uses of IntPredicate in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type IntPredicate Modifier and Type Method Description ImmutableSortedBag<T>
AbstractImmutableSortedBag. selectByOccurrences(IntPredicate predicate)
ImmutableSortedBag<T>
ImmutableEmptySortedBag. selectByOccurrences(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type IntPredicate Modifier and Type Method Description MutableSortedBag<T>
SynchronizedSortedBag. selectByOccurrences(IntPredicate predicate)
MutableSortedBag<T>
TreeBag. selectByOccurrences(IntPredicate predicate)
MutableSortedBag<T>
UnmodifiableSortedBag. selectByOccurrences(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.bag.strategy.mutable
Methods in org.eclipse.collections.impl.bag.strategy.mutable with parameters of type IntPredicate Modifier and Type Method Description MutableBag<T>
HashBagWithHashingStrategy. selectByOccurrences(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.block.factory.primitive
Classes in org.eclipse.collections.impl.block.factory.primitive that implement IntPredicate Modifier and Type Class Description private static class
IntPredicates.AlwaysFalseIntPredicate
private static class
IntPredicates.AlwaysTrueIntPredicate
private static class
IntPredicates.AndIntPredicate
private static class
IntPredicates.EqualsIntPredicate
private static class
IntPredicates.GreaterThanIntPredicate
private static class
IntPredicates.IntIsEvenPredicate
private static class
IntPredicates.IntIsOddPredicate
private static class
IntPredicates.LessThanIntPredicate
private static class
IntPredicates.NotIntPredicate
private static class
IntPredicates.OrIntPredicate
Fields in org.eclipse.collections.impl.block.factory.primitive declared as IntPredicate Modifier and Type Field Description private static IntPredicate
IntPredicates. ALWAYS_FALSE
private static IntPredicate
IntPredicates. ALWAYS_TRUE
private IntPredicate
IntPredicates.NotIntPredicate. negate
private IntPredicate
IntPredicates.AndIntPredicate. one
private IntPredicate
IntPredicates.OrIntPredicate. one
private IntPredicate
IntPredicates.AndIntPredicate. two
private IntPredicate
IntPredicates.OrIntPredicate. two
Methods in org.eclipse.collections.impl.block.factory.primitive that return IntPredicate Modifier and Type Method Description static IntPredicate
IntPredicates. alwaysFalse()
static IntPredicate
IntPredicates. alwaysTrue()
static IntPredicate
IntPredicates. and(IntPredicate one, IntPredicate two)
static IntPredicate
IntPredicates. equal(int expected)
static IntPredicate
IntPredicates. greaterThan(int expected)
static IntPredicate
IntPredicates. isEven()
static IntPredicate
IntPredicates. isOdd()
static IntPredicate
IntPredicates. lessThan(int expected)
static IntPredicate
IntPredicates. not(IntPredicate negate)
static IntPredicate
IntPredicates. or(IntPredicate one, IntPredicate two)
Methods in org.eclipse.collections.impl.block.factory.primitive with parameters of type IntPredicate Modifier and Type Method Description static IntPredicate
IntPredicates. and(IntPredicate one, IntPredicate two)
static IntPredicate
IntPredicates. not(IntPredicate negate)
static IntPredicate
IntPredicates. or(IntPredicate one, IntPredicate two)
Constructors in org.eclipse.collections.impl.block.factory.primitive with parameters of type IntPredicate Constructor Description AndIntPredicate(IntPredicate one, IntPredicate two)
NotIntPredicate(IntPredicate negate)
OrIntPredicate(IntPredicate one, IntPredicate two)
-
Uses of IntPredicate in org.eclipse.collections.impl.block.function.primitive
Fields in org.eclipse.collections.impl.block.function.primitive with type parameters of type IntPredicate Modifier and Type Field Description private MutableList<Pair<IntPredicate,IntToObjectFunction<? extends V>>>
IntCaseFunction. predicateFunctions
Methods in org.eclipse.collections.impl.block.function.primitive with parameters of type IntPredicate Modifier and Type Method Description IntCaseFunction<V>
IntCaseFunction. addCase(IntPredicate predicate, IntToObjectFunction<? extends V> function)
-
Uses of IntPredicate in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive with type parameters of type IntPredicate Modifier and Type Field Description private MutableList<Pair<IntPredicate,IntProcedure>>
IntCaseProcedure. predicateProcedures
Methods in org.eclipse.collections.impl.block.procedure.primitive with parameters of type IntPredicate Modifier and Type Method Description IntCaseProcedure
IntCaseProcedure. addCase(IntPredicate predicate, IntProcedure procedure)
-
Uses of IntPredicate in org.eclipse.collections.impl.collection.mutable.primitive
Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
AbstractSynchronizedIntCollection. allSatisfy(IntPredicate predicate)
boolean
AbstractUnmodifiableIntCollection. allSatisfy(IntPredicate predicate)
boolean
AbstractSynchronizedIntCollection. anySatisfy(IntPredicate predicate)
boolean
AbstractUnmodifiableIntCollection. anySatisfy(IntPredicate predicate)
int
AbstractSynchronizedIntCollection. count(IntPredicate predicate)
int
AbstractUnmodifiableIntCollection. count(IntPredicate predicate)
int
AbstractSynchronizedIntCollection. detectIfNone(IntPredicate predicate, int ifNone)
int
AbstractUnmodifiableIntCollection. detectIfNone(IntPredicate predicate, int ifNone)
boolean
AbstractSynchronizedIntCollection. noneSatisfy(IntPredicate predicate)
boolean
AbstractUnmodifiableIntCollection. noneSatisfy(IntPredicate predicate)
MutableIntCollection
AbstractSynchronizedIntCollection. reject(IntPredicate predicate)
MutableIntCollection
AbstractUnmodifiableIntCollection. reject(IntPredicate predicate)
boolean
AbstractSynchronizedIntCollection. removeIf(IntPredicate predicate)
boolean
AbstractUnmodifiableIntCollection. removeIf(IntPredicate predicate)
MutableIntCollection
AbstractSynchronizedIntCollection. select(IntPredicate predicate)
MutableIntCollection
AbstractUnmodifiableIntCollection. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as IntPredicate Modifier and Type Field Description private IntPredicate
SelectIntIterable.CountIntProcedure. predicate
private IntPredicate
SelectIntIterable. predicate
private IntPredicate
SelectIntIterable.SelectIntIterator. predicate
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
AbstractLazyIntIterable. allSatisfy(IntPredicate predicate)
boolean
CollectIntIterable. allSatisfy(IntPredicate predicate)
boolean
LazyIntIterableAdapter. allSatisfy(IntPredicate predicate)
boolean
SelectIntIterable. allSatisfy(IntPredicate predicate)
boolean
TapIntIterable. allSatisfy(IntPredicate predicate)
boolean
AbstractLazyIntIterable. anySatisfy(IntPredicate predicate)
boolean
CollectIntIterable. anySatisfy(IntPredicate predicate)
boolean
LazyIntIterableAdapter. anySatisfy(IntPredicate predicate)
boolean
SelectIntIterable. anySatisfy(IntPredicate predicate)
boolean
TapIntIterable. anySatisfy(IntPredicate predicate)
int
AbstractLazyIntIterable. count(IntPredicate predicate)
int
CollectIntIterable. count(IntPredicate predicate)
int
LazyIntIterableAdapter. count(IntPredicate predicate)
int
SelectIntIterable. count(IntPredicate predicate)
int
AbstractLazyIntIterable. detectIfNone(IntPredicate predicate, int ifNone)
int
LazyIntIterableAdapter. detectIfNone(IntPredicate predicate, int ifNone)
int
TapIntIterable. detectIfNone(IntPredicate predicate, int ifNone)
boolean
AbstractLazyIntIterable. noneSatisfy(IntPredicate predicate)
boolean
LazyIntIterableAdapter. noneSatisfy(IntPredicate predicate)
boolean
TapIntIterable. noneSatisfy(IntPredicate predicate)
LazyIntIterable
AbstractLazyIntIterable. reject(IntPredicate predicate)
LazyIntIterable
AbstractLazyIntIterable. select(IntPredicate predicate)
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type IntPredicate Constructor Description CountIntProcedure(IntPredicate predicate)
SelectIntIterable(IntIterable delegate, IntPredicate predicate)
SelectIntIterator(IntIterable iterable, IntPredicate predicate)
SelectIntIterator(IntIterator iterator, IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.list.immutable.primitive
Methods in org.eclipse.collections.impl.list.immutable.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
ImmutableIntArrayList. allSatisfy(IntPredicate predicate)
boolean
ImmutableIntEmptyList. allSatisfy(IntPredicate predicate)
boolean
ImmutableIntSingletonList. allSatisfy(IntPredicate predicate)
boolean
ImmutableIntArrayList. anySatisfy(IntPredicate predicate)
boolean
ImmutableIntEmptyList. anySatisfy(IntPredicate predicate)
boolean
ImmutableIntSingletonList. anySatisfy(IntPredicate predicate)
int
ImmutableIntArrayList. count(IntPredicate predicate)
int
ImmutableIntEmptyList. count(IntPredicate predicate)
int
ImmutableIntSingletonList. count(IntPredicate predicate)
int
ImmutableIntArrayList. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableIntEmptyList. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableIntSingletonList. detectIfNone(IntPredicate predicate, int ifNone)
boolean
ImmutableIntEmptyList. noneSatisfy(IntPredicate predicate)
boolean
ImmutableIntSingletonList. noneSatisfy(IntPredicate predicate)
ImmutableIntList
ImmutableIntArrayList. reject(IntPredicate predicate)
<R extends MutableIntCollection>
RImmutableIntArrayList. reject(IntPredicate predicate, R target)
ImmutableIntList
ImmutableIntEmptyList. reject(IntPredicate predicate)
ImmutableIntList
ImmutableIntSingletonList. reject(IntPredicate predicate)
ImmutableIntList
ImmutableIntArrayList. select(IntPredicate predicate)
<R extends MutableIntCollection>
RImmutableIntArrayList. select(IntPredicate predicate, R target)
ImmutableIntList
ImmutableIntEmptyList. select(IntPredicate predicate)
ImmutableIntList
ImmutableIntSingletonList. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.list.mutable.primitive
Methods in org.eclipse.collections.impl.list.mutable.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
IntArrayList. allSatisfy(IntPredicate predicate)
boolean
IntArrayList. anySatisfy(IntPredicate predicate)
int
IntArrayList. count(IntPredicate predicate)
int
IntArrayList. detectIfNone(IntPredicate predicate, int ifNone)
IntArrayList
IntArrayList. reject(IntPredicate predicate)
<R extends MutableIntCollection>
RIntArrayList. reject(IntPredicate predicate, R target)
MutableIntList
SynchronizedIntList. reject(IntPredicate predicate)
MutableIntList
UnmodifiableIntList. reject(IntPredicate predicate)
boolean
IntArrayList. removeIf(IntPredicate predicate)
IntArrayList
IntArrayList. select(IntPredicate predicate)
<R extends MutableIntCollection>
RIntArrayList. select(IntPredicate predicate, R target)
MutableIntList
SynchronizedIntList. select(IntPredicate predicate)
MutableIntList
UnmodifiableIntList. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
IntInterval. allSatisfy(IntPredicate predicate)
boolean
IntInterval. anySatisfy(IntPredicate predicate)
int
IntInterval. count(IntPredicate predicate)
int
IntInterval. detectIfNone(IntPredicate predicate, int ifNone)
ImmutableIntList
IntInterval. reject(IntPredicate predicate)
ImmutableIntList
IntInterval. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
ImmutableByteIntEmptyMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableByteIntHashMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableByteIntSingletonMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableCharIntEmptyMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableCharIntHashMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableCharIntSingletonMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableDoubleIntEmptyMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableDoubleIntHashMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableDoubleIntSingletonMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableFloatIntEmptyMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableFloatIntHashMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableFloatIntSingletonMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableIntIntEmptyMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableIntIntHashMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableIntIntSingletonMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableLongIntEmptyMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableLongIntHashMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableLongIntSingletonMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableObjectIntEmptyMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableObjectIntHashMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableObjectIntSingletonMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableShortIntEmptyMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableShortIntHashMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableShortIntSingletonMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableByteIntEmptyMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableByteIntHashMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableByteIntSingletonMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableCharIntEmptyMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableCharIntHashMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableCharIntSingletonMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableDoubleIntEmptyMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableDoubleIntHashMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableDoubleIntSingletonMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableFloatIntEmptyMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableFloatIntHashMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableFloatIntSingletonMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableIntIntEmptyMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableIntIntHashMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableIntIntSingletonMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableLongIntEmptyMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableLongIntHashMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableLongIntSingletonMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableObjectIntEmptyMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableObjectIntHashMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableObjectIntSingletonMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableShortIntEmptyMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableShortIntHashMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableShortIntSingletonMap. anySatisfy(IntPredicate predicate)
int
ImmutableByteIntEmptyMap. count(IntPredicate predicate)
int
ImmutableByteIntHashMap. count(IntPredicate predicate)
int
ImmutableByteIntSingletonMap. count(IntPredicate predicate)
int
ImmutableCharIntEmptyMap. count(IntPredicate predicate)
int
ImmutableCharIntHashMap. count(IntPredicate predicate)
int
ImmutableCharIntSingletonMap. count(IntPredicate predicate)
int
ImmutableDoubleIntEmptyMap. count(IntPredicate predicate)
int
ImmutableDoubleIntHashMap. count(IntPredicate predicate)
int
ImmutableDoubleIntSingletonMap. count(IntPredicate predicate)
int
ImmutableFloatIntEmptyMap. count(IntPredicate predicate)
int
ImmutableFloatIntHashMap. count(IntPredicate predicate)
int
ImmutableFloatIntSingletonMap. count(IntPredicate predicate)
int
ImmutableIntIntEmptyMap. count(IntPredicate predicate)
int
ImmutableIntIntHashMap. count(IntPredicate predicate)
int
ImmutableIntIntSingletonMap. count(IntPredicate predicate)
int
ImmutableLongIntEmptyMap. count(IntPredicate predicate)
int
ImmutableLongIntHashMap. count(IntPredicate predicate)
int
ImmutableLongIntSingletonMap. count(IntPredicate predicate)
int
ImmutableObjectIntEmptyMap. count(IntPredicate predicate)
int
ImmutableObjectIntHashMap. count(IntPredicate predicate)
int
ImmutableObjectIntSingletonMap. count(IntPredicate predicate)
int
ImmutableShortIntEmptyMap. count(IntPredicate predicate)
int
ImmutableShortIntHashMap. count(IntPredicate predicate)
int
ImmutableShortIntSingletonMap. count(IntPredicate predicate)
int
ImmutableByteIntEmptyMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableByteIntHashMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableByteIntSingletonMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableCharIntEmptyMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableCharIntHashMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableCharIntSingletonMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableDoubleIntEmptyMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableDoubleIntHashMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableDoubleIntSingletonMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableFloatIntEmptyMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableFloatIntHashMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableFloatIntSingletonMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableIntIntEmptyMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableIntIntHashMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableIntIntSingletonMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableLongIntEmptyMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableLongIntHashMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableLongIntSingletonMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableObjectIntEmptyMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableObjectIntHashMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableObjectIntSingletonMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableShortIntEmptyMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableShortIntHashMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableShortIntSingletonMap. detectIfNone(IntPredicate predicate, int ifNone)
boolean
ImmutableByteIntEmptyMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableByteIntHashMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableByteIntSingletonMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableCharIntEmptyMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableCharIntHashMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableCharIntSingletonMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableDoubleIntEmptyMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableDoubleIntHashMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableDoubleIntSingletonMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableFloatIntEmptyMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableFloatIntHashMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableFloatIntSingletonMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableIntIntEmptyMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableIntIntHashMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableIntIntSingletonMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableLongIntEmptyMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableLongIntHashMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableLongIntSingletonMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableObjectIntEmptyMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableObjectIntHashMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableObjectIntSingletonMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableShortIntEmptyMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableShortIntHashMap. noneSatisfy(IntPredicate predicate)
boolean
ImmutableShortIntSingletonMap. noneSatisfy(IntPredicate predicate)
ImmutableIntBag
ImmutableByteIntEmptyMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableByteIntHashMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableByteIntSingletonMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableCharIntEmptyMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableCharIntHashMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableCharIntSingletonMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableDoubleIntEmptyMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableDoubleIntHashMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableDoubleIntSingletonMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableFloatIntEmptyMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableFloatIntHashMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableFloatIntSingletonMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableIntIntEmptyMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableIntIntHashMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableIntIntSingletonMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableLongIntEmptyMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableLongIntHashMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableLongIntSingletonMap. reject(IntPredicate predicate)
ImmutableIntCollection
ImmutableObjectIntEmptyMap. reject(IntPredicate predicate)
ImmutableIntCollection
ImmutableObjectIntHashMap. reject(IntPredicate predicate)
ImmutableIntCollection
ImmutableObjectIntSingletonMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableShortIntEmptyMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableShortIntHashMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableShortIntSingletonMap. reject(IntPredicate predicate)
ImmutableIntBag
ImmutableByteIntEmptyMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableByteIntHashMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableByteIntSingletonMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableCharIntEmptyMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableCharIntHashMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableCharIntSingletonMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableDoubleIntEmptyMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableDoubleIntHashMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableDoubleIntSingletonMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableFloatIntEmptyMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableFloatIntHashMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableFloatIntSingletonMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableIntIntEmptyMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableIntIntHashMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableIntIntSingletonMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableLongIntEmptyMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableLongIntHashMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableLongIntSingletonMap. select(IntPredicate predicate)
ImmutableIntCollection
ImmutableObjectIntEmptyMap. select(IntPredicate predicate)
ImmutableIntCollection
ImmutableObjectIntHashMap. select(IntPredicate predicate)
ImmutableIntCollection
ImmutableObjectIntSingletonMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableShortIntEmptyMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableShortIntHashMap. select(IntPredicate predicate)
ImmutableIntBag
ImmutableShortIntSingletonMap. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
AbstractMutableIntKeySet. allSatisfy(IntPredicate predicate)
boolean
AbstractMutableIntValuesMap.AbstractIntValuesCollection. allSatisfy(IntPredicate predicate)
boolean
AbstractMutableIntValuesMap. allSatisfy(IntPredicate predicate)
boolean
ImmutableIntIntMapKeySet. allSatisfy(IntPredicate predicate)
boolean
ImmutableIntMapKeySet. allSatisfy(IntPredicate predicate)
boolean
IntBooleanHashMap.KeysView. allSatisfy(IntPredicate predicate)
boolean
ObjectIntHashMap. allSatisfy(IntPredicate predicate)
boolean
ObjectIntHashMap.ValuesCollection. allSatisfy(IntPredicate predicate)
boolean
ObjectIntHashMapWithHashingStrategy. allSatisfy(IntPredicate predicate)
boolean
ObjectIntHashMapWithHashingStrategy.ValuesCollection. allSatisfy(IntPredicate predicate)
boolean
SynchronizedByteIntMap. allSatisfy(IntPredicate predicate)
boolean
SynchronizedCharIntMap. allSatisfy(IntPredicate predicate)
boolean
SynchronizedDoubleIntMap. allSatisfy(IntPredicate predicate)
boolean
SynchronizedFloatIntMap. allSatisfy(IntPredicate predicate)
boolean
SynchronizedIntIntMap. allSatisfy(IntPredicate predicate)
boolean
SynchronizedLongIntMap. allSatisfy(IntPredicate predicate)
boolean
SynchronizedObjectIntMap. allSatisfy(IntPredicate predicate)
boolean
SynchronizedShortIntMap. allSatisfy(IntPredicate predicate)
boolean
UnmodifiableByteIntMap. allSatisfy(IntPredicate predicate)
boolean
UnmodifiableCharIntMap. allSatisfy(IntPredicate predicate)
boolean
UnmodifiableDoubleIntMap. allSatisfy(IntPredicate predicate)
boolean
UnmodifiableFloatIntMap. allSatisfy(IntPredicate predicate)
boolean
UnmodifiableIntIntMap. allSatisfy(IntPredicate predicate)
boolean
UnmodifiableLongIntMap. allSatisfy(IntPredicate predicate)
boolean
UnmodifiableObjectIntMap. allSatisfy(IntPredicate predicate)
boolean
UnmodifiableShortIntMap. allSatisfy(IntPredicate predicate)
boolean
AbstractMutableIntKeySet. anySatisfy(IntPredicate predicate)
boolean
AbstractMutableIntValuesMap.AbstractIntValuesCollection. anySatisfy(IntPredicate predicate)
boolean
AbstractMutableIntValuesMap. anySatisfy(IntPredicate predicate)
boolean
ImmutableIntIntMapKeySet. anySatisfy(IntPredicate predicate)
boolean
ImmutableIntMapKeySet. anySatisfy(IntPredicate predicate)
boolean
IntBooleanHashMap.KeysView. anySatisfy(IntPredicate predicate)
boolean
ObjectIntHashMap. anySatisfy(IntPredicate predicate)
boolean
ObjectIntHashMap.ValuesCollection. anySatisfy(IntPredicate predicate)
boolean
ObjectIntHashMapWithHashingStrategy. anySatisfy(IntPredicate predicate)
boolean
ObjectIntHashMapWithHashingStrategy.ValuesCollection. anySatisfy(IntPredicate predicate)
boolean
SynchronizedByteIntMap. anySatisfy(IntPredicate predicate)
boolean
SynchronizedCharIntMap. anySatisfy(IntPredicate predicate)
boolean
SynchronizedDoubleIntMap. anySatisfy(IntPredicate predicate)
boolean
SynchronizedFloatIntMap. anySatisfy(IntPredicate predicate)
boolean
SynchronizedIntIntMap. anySatisfy(IntPredicate predicate)
boolean
SynchronizedLongIntMap. anySatisfy(IntPredicate predicate)
boolean
SynchronizedObjectIntMap. anySatisfy(IntPredicate predicate)
boolean
SynchronizedShortIntMap. anySatisfy(IntPredicate predicate)
boolean
UnmodifiableByteIntMap. anySatisfy(IntPredicate predicate)
boolean
UnmodifiableCharIntMap. anySatisfy(IntPredicate predicate)
boolean
UnmodifiableDoubleIntMap. anySatisfy(IntPredicate predicate)
boolean
UnmodifiableFloatIntMap. anySatisfy(IntPredicate predicate)
boolean
UnmodifiableIntIntMap. anySatisfy(IntPredicate predicate)
boolean
UnmodifiableLongIntMap. anySatisfy(IntPredicate predicate)
boolean
UnmodifiableObjectIntMap. anySatisfy(IntPredicate predicate)
boolean
UnmodifiableShortIntMap. anySatisfy(IntPredicate predicate)
int
AbstractMutableIntKeySet. count(IntPredicate predicate)
int
AbstractMutableIntValuesMap.AbstractIntValuesCollection. count(IntPredicate predicate)
int
AbstractMutableIntValuesMap. count(IntPredicate predicate)
int
ImmutableIntIntMapKeySet. count(IntPredicate predicate)
int
ImmutableIntMapKeySet. count(IntPredicate predicate)
int
IntBooleanHashMap.KeysView. count(IntPredicate predicate)
int
ObjectIntHashMap. count(IntPredicate predicate)
int
ObjectIntHashMap.ValuesCollection. count(IntPredicate predicate)
int
ObjectIntHashMapWithHashingStrategy. count(IntPredicate predicate)
int
ObjectIntHashMapWithHashingStrategy.ValuesCollection. count(IntPredicate predicate)
int
SynchronizedByteIntMap. count(IntPredicate predicate)
int
SynchronizedCharIntMap. count(IntPredicate predicate)
int
SynchronizedDoubleIntMap. count(IntPredicate predicate)
int
SynchronizedFloatIntMap. count(IntPredicate predicate)
int
SynchronizedIntIntMap. count(IntPredicate predicate)
int
SynchronizedLongIntMap. count(IntPredicate predicate)
int
SynchronizedObjectIntMap. count(IntPredicate predicate)
int
SynchronizedShortIntMap. count(IntPredicate predicate)
int
UnmodifiableByteIntMap. count(IntPredicate predicate)
int
UnmodifiableCharIntMap. count(IntPredicate predicate)
int
UnmodifiableDoubleIntMap. count(IntPredicate predicate)
int
UnmodifiableFloatIntMap. count(IntPredicate predicate)
int
UnmodifiableIntIntMap. count(IntPredicate predicate)
int
UnmodifiableLongIntMap. count(IntPredicate predicate)
int
UnmodifiableObjectIntMap. count(IntPredicate predicate)
int
UnmodifiableShortIntMap. count(IntPredicate predicate)
int
AbstractMutableIntKeySet. detectIfNone(IntPredicate predicate, int ifNone)
int
AbstractMutableIntValuesMap.AbstractIntValuesCollection. detectIfNone(IntPredicate predicate, int ifNone)
int
AbstractMutableIntValuesMap. detectIfNone(IntPredicate predicate, int value)
int
ImmutableIntIntMapKeySet. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableIntMapKeySet. detectIfNone(IntPredicate predicate, int ifNone)
int
IntBooleanHashMap.KeysView. detectIfNone(IntPredicate predicate, int value)
int
ObjectIntHashMap. detectIfNone(IntPredicate predicate, int ifNone)
int
ObjectIntHashMap.ValuesCollection. detectIfNone(IntPredicate predicate, int ifNone)
int
ObjectIntHashMapWithHashingStrategy. detectIfNone(IntPredicate predicate, int ifNone)
int
ObjectIntHashMapWithHashingStrategy.ValuesCollection. detectIfNone(IntPredicate predicate, int ifNone)
int
SynchronizedByteIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
SynchronizedCharIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
SynchronizedDoubleIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
SynchronizedFloatIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
SynchronizedIntIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
SynchronizedLongIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
SynchronizedObjectIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
SynchronizedShortIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
UnmodifiableByteIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
UnmodifiableCharIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
UnmodifiableDoubleIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
UnmodifiableFloatIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
UnmodifiableIntIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
UnmodifiableLongIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
UnmodifiableObjectIntMap. detectIfNone(IntPredicate predicate, int ifNone)
int
UnmodifiableShortIntMap. detectIfNone(IntPredicate predicate, int ifNone)
boolean
AbstractMutableIntValuesMap.AbstractIntValuesCollection. noneSatisfy(IntPredicate predicate)
boolean
ImmutableIntIntMapKeySet. noneSatisfy(IntPredicate predicate)
boolean
ImmutableIntMapKeySet. noneSatisfy(IntPredicate predicate)
boolean
ObjectIntHashMap. noneSatisfy(IntPredicate predicate)
boolean
ObjectIntHashMap.ValuesCollection. noneSatisfy(IntPredicate predicate)
boolean
ObjectIntHashMapWithHashingStrategy. noneSatisfy(IntPredicate predicate)
boolean
ObjectIntHashMapWithHashingStrategy.ValuesCollection. noneSatisfy(IntPredicate predicate)
boolean
SynchronizedByteIntMap. noneSatisfy(IntPredicate predicate)
boolean
SynchronizedCharIntMap. noneSatisfy(IntPredicate predicate)
boolean
SynchronizedDoubleIntMap. noneSatisfy(IntPredicate predicate)
boolean
SynchronizedFloatIntMap. noneSatisfy(IntPredicate predicate)
boolean
SynchronizedIntIntMap. noneSatisfy(IntPredicate predicate)
boolean
SynchronizedLongIntMap. noneSatisfy(IntPredicate predicate)
boolean
SynchronizedObjectIntMap. noneSatisfy(IntPredicate predicate)
boolean
SynchronizedShortIntMap. noneSatisfy(IntPredicate predicate)
boolean
UnmodifiableByteIntMap. noneSatisfy(IntPredicate predicate)
boolean
UnmodifiableCharIntMap. noneSatisfy(IntPredicate predicate)
boolean
UnmodifiableDoubleIntMap. noneSatisfy(IntPredicate predicate)
boolean
UnmodifiableFloatIntMap. noneSatisfy(IntPredicate predicate)
boolean
UnmodifiableIntIntMap. noneSatisfy(IntPredicate predicate)
boolean
UnmodifiableLongIntMap. noneSatisfy(IntPredicate predicate)
boolean
UnmodifiableObjectIntMap. noneSatisfy(IntPredicate predicate)
boolean
UnmodifiableShortIntMap. noneSatisfy(IntPredicate predicate)
MutableIntSet
AbstractMutableIntKeySet. reject(IntPredicate predicate)
MutableIntCollection
AbstractMutableIntValuesMap.AbstractIntValuesCollection. reject(IntPredicate predicate)
MutableIntBag
AbstractMutableIntValuesMap. reject(IntPredicate predicate)
ImmutableIntSet
ImmutableIntIntMapKeySet. reject(IntPredicate predicate)
ImmutableIntSet
ImmutableIntMapKeySet. reject(IntPredicate predicate)
MutableIntCollection
ObjectIntHashMap. reject(IntPredicate predicate)
MutableIntCollection
ObjectIntHashMap.ValuesCollection. reject(IntPredicate predicate)
MutableIntCollection
ObjectIntHashMapWithHashingStrategy. reject(IntPredicate predicate)
MutableIntCollection
ObjectIntHashMapWithHashingStrategy.ValuesCollection. reject(IntPredicate predicate)
MutableIntBag
SynchronizedByteIntMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedCharIntMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedDoubleIntMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedFloatIntMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedIntIntMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedLongIntMap. reject(IntPredicate predicate)
MutableIntCollection
SynchronizedObjectIntMap. reject(IntPredicate predicate)
MutableIntBag
SynchronizedShortIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableByteIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableCharIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableDoubleIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableFloatIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableIntIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableLongIntMap. reject(IntPredicate predicate)
MutableIntCollection
UnmodifiableObjectIntMap. reject(IntPredicate predicate)
MutableIntBag
UnmodifiableShortIntMap. reject(IntPredicate predicate)
MutableIntSet
AbstractMutableIntKeySet. select(IntPredicate predicate)
MutableIntCollection
AbstractMutableIntValuesMap.AbstractIntValuesCollection. select(IntPredicate predicate)
MutableIntBag
AbstractMutableIntValuesMap. select(IntPredicate predicate)
ImmutableIntSet
ImmutableIntIntMapKeySet. select(IntPredicate predicate)
ImmutableIntSet
ImmutableIntMapKeySet. select(IntPredicate predicate)
MutableIntCollection
ObjectIntHashMap. select(IntPredicate predicate)
MutableIntCollection
ObjectIntHashMap.ValuesCollection. select(IntPredicate predicate)
MutableIntCollection
ObjectIntHashMapWithHashingStrategy. select(IntPredicate predicate)
MutableIntCollection
ObjectIntHashMapWithHashingStrategy.ValuesCollection. select(IntPredicate predicate)
MutableIntBag
SynchronizedByteIntMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedCharIntMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedDoubleIntMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedFloatIntMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedIntIntMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedLongIntMap. select(IntPredicate predicate)
MutableIntCollection
SynchronizedObjectIntMap. select(IntPredicate predicate)
MutableIntBag
SynchronizedShortIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableByteIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableCharIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableDoubleIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableFloatIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableIntIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableLongIntMap. select(IntPredicate predicate)
MutableIntCollection
UnmodifiableObjectIntMap. select(IntPredicate predicate)
MutableIntBag
UnmodifiableShortIntMap. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
SynchronizedIntIterable. allSatisfy(IntPredicate predicate)
boolean
SynchronizedIntIterable. anySatisfy(IntPredicate predicate)
int
SynchronizedIntIterable. count(IntPredicate predicate)
int
SynchronizedIntIterable. detectIfNone(IntPredicate predicate, int ifNone)
boolean
SynchronizedIntIterable. noneSatisfy(IntPredicate predicate)
IntIterable
SynchronizedIntIterable. reject(IntPredicate predicate)
IntIterable
SynchronizedIntIterable. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.set.immutable.primitive
Methods in org.eclipse.collections.impl.set.immutable.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
ImmutableIntEmptySet. allSatisfy(IntPredicate predicate)
boolean
ImmutableIntSingletonSet. allSatisfy(IntPredicate predicate)
boolean
ImmutableIntEmptySet. anySatisfy(IntPredicate predicate)
boolean
ImmutableIntSingletonSet. anySatisfy(IntPredicate predicate)
int
ImmutableIntEmptySet. count(IntPredicate predicate)
int
ImmutableIntSingletonSet. count(IntPredicate predicate)
int
ImmutableIntEmptySet. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableIntSingletonSet. detectIfNone(IntPredicate predicate, int ifNone)
boolean
ImmutableIntEmptySet. noneSatisfy(IntPredicate predicate)
boolean
ImmutableIntSingletonSet. noneSatisfy(IntPredicate predicate)
ImmutableIntSet
ImmutableIntEmptySet. reject(IntPredicate predicate)
ImmutableIntSet
ImmutableIntSingletonSet. reject(IntPredicate predicate)
ImmutableIntSet
ImmutableIntEmptySet. select(IntPredicate predicate)
ImmutableIntSet
ImmutableIntSingletonSet. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.set.mutable.primitive
Methods in org.eclipse.collections.impl.set.mutable.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
IntHashSet. allSatisfy(IntPredicate predicate)
boolean
IntHashSet.ImmutableIntHashSet. allSatisfy(IntPredicate predicate)
boolean
IntHashSet. anySatisfy(IntPredicate predicate)
boolean
IntHashSet.ImmutableIntHashSet. anySatisfy(IntPredicate predicate)
int
IntHashSet. count(IntPredicate predicate)
int
IntHashSet.ImmutableIntHashSet. count(IntPredicate predicate)
int
IntHashSet. detectIfNone(IntPredicate predicate, int ifNone)
int
IntHashSet.ImmutableIntHashSet. detectIfNone(IntPredicate predicate, int ifNone)
boolean
IntHashSet.ImmutableIntHashSet. noneSatisfy(IntPredicate predicate)
ImmutableIntSet
IntHashSet.ImmutableIntHashSet. reject(IntPredicate predicate)
IntHashSet
IntHashSet. reject(IntPredicate predicate)
<R extends MutableIntCollection>
RIntHashSet. reject(IntPredicate predicate, R target)
MutableIntSet
SynchronizedIntSet. reject(IntPredicate predicate)
MutableIntSet
UnmodifiableIntSet. reject(IntPredicate predicate)
ImmutableIntSet
IntHashSet.ImmutableIntHashSet. select(IntPredicate predicate)
IntHashSet
IntHashSet. select(IntPredicate predicate)
<R extends MutableIntCollection>
RIntHashSet. select(IntPredicate predicate, R target)
MutableIntSet
SynchronizedIntSet. select(IntPredicate predicate)
MutableIntSet
UnmodifiableIntSet. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
ImmutableIntEmptyStack. allSatisfy(IntPredicate predicate)
boolean
ImmutableIntSingletonStack. allSatisfy(IntPredicate predicate)
boolean
ImmutableIntEmptyStack. anySatisfy(IntPredicate predicate)
boolean
ImmutableIntSingletonStack. anySatisfy(IntPredicate predicate)
int
ImmutableIntEmptyStack. count(IntPredicate predicate)
int
ImmutableIntSingletonStack. count(IntPredicate predicate)
int
ImmutableIntEmptyStack. detectIfNone(IntPredicate predicate, int ifNone)
int
ImmutableIntSingletonStack. detectIfNone(IntPredicate predicate, int ifNone)
boolean
ImmutableIntEmptyStack. noneSatisfy(IntPredicate predicate)
boolean
ImmutableIntSingletonStack. noneSatisfy(IntPredicate predicate)
ImmutableIntStack
ImmutableIntArrayStack. reject(IntPredicate predicate)
ImmutableIntStack
ImmutableIntEmptyStack. reject(IntPredicate predicate)
ImmutableIntStack
ImmutableIntSingletonStack. reject(IntPredicate predicate)
ImmutableIntStack
ImmutableIntArrayStack. select(IntPredicate predicate)
ImmutableIntStack
ImmutableIntEmptyStack. select(IntPredicate predicate)
ImmutableIntStack
ImmutableIntSingletonStack. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
SynchronizedIntStack. allSatisfy(IntPredicate predicate)
boolean
UnmodifiableIntStack. allSatisfy(IntPredicate predicate)
boolean
SynchronizedIntStack. anySatisfy(IntPredicate predicate)
boolean
UnmodifiableIntStack. anySatisfy(IntPredicate predicate)
int
SynchronizedIntStack. count(IntPredicate predicate)
int
UnmodifiableIntStack. count(IntPredicate predicate)
int
SynchronizedIntStack. detectIfNone(IntPredicate predicate, int ifNone)
int
UnmodifiableIntStack. detectIfNone(IntPredicate predicate, int ifNone)
boolean
SynchronizedIntStack. noneSatisfy(IntPredicate predicate)
boolean
UnmodifiableIntStack. noneSatisfy(IntPredicate predicate)
MutableIntStack
IntArrayStack. reject(IntPredicate predicate)
MutableIntStack
SynchronizedIntStack. reject(IntPredicate predicate)
MutableIntStack
UnmodifiableIntStack. reject(IntPredicate predicate)
MutableIntStack
IntArrayStack. select(IntPredicate predicate)
MutableIntStack
SynchronizedIntStack. select(IntPredicate predicate)
MutableIntStack
UnmodifiableIntStack. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive with parameters of type IntPredicate Modifier and Type Method Description boolean
AbstractIntStack. allSatisfy(IntPredicate predicate)
boolean
AbstractIntStack. anySatisfy(IntPredicate predicate)
int
AbstractIntStack. count(IntPredicate predicate)
int
AbstractIntStack. detectIfNone(IntPredicate predicate, int ifNone)
boolean
AbstractIntStack. noneSatisfy(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable with parameters of type IntPredicate Modifier and Type Method Description boolean
CodePointAdapter. allSatisfy(IntPredicate predicate)
boolean
CodePointList. allSatisfy(IntPredicate predicate)
boolean
CodePointAdapter. anySatisfy(IntPredicate predicate)
boolean
CodePointList. anySatisfy(IntPredicate predicate)
int
CodePointAdapter. count(IntPredicate predicate)
int
CodePointList. count(IntPredicate predicate)
int
CodePointAdapter. detectIfNone(IntPredicate predicate, int ifNone)
int
CodePointList. detectIfNone(IntPredicate predicate, int ifNone)
boolean
CodePointAdapter. noneSatisfy(IntPredicate predicate)
boolean
CodePointList. noneSatisfy(IntPredicate predicate)
CodePointAdapter
CodePointAdapter. reject(IntPredicate predicate)
CodePointList
CodePointList. reject(IntPredicate predicate)
CodePointAdapter
CodePointAdapter. select(IntPredicate predicate)
CodePointList
CodePointList. select(IntPredicate predicate)
-
Uses of IntPredicate in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type IntPredicate Modifier and Type Method Description static boolean
IntIterableIterate. allSatisfy(IntIterable iterable, IntPredicate predicate)
static boolean
IntIteratorIterate. allSatisfy(IntIterator iterator, IntPredicate predicate)
static boolean
IntIterableIterate. anySatisfy(IntIterable iterable, IntPredicate predicate)
static boolean
IntIteratorIterate. anySatisfy(IntIterator iterator, IntPredicate predicate)
static int
IntIterableIterate. count(IntIterable iterable, IntPredicate predicate)
static int
IntIteratorIterate. count(IntIterator iterator, IntPredicate predicate)
static int
IntIterableIterate. detectIfNone(IntIterable iterable, IntPredicate predicate, int ifNone)
static int
IntIteratorIterate. detectIfNone(IntIterator iterator, IntPredicate predicate, int ifNone)
static boolean
IntIterableIterate. noneSatisfy(IntIterable iterable, IntPredicate predicate)
static boolean
IntIteratorIterate. noneSatisfy(IntIterator iterator, IntPredicate predicate)
static <R extends MutableIntCollection>
RIntIterableIterate. reject(IntIterable iterable, IntPredicate predicate, R targetCollection)
static <R extends MutableIntCollection>
RIntIteratorIterate. reject(IntIterator iterator, IntPredicate predicate, R targetCollection)
static <R extends MutableIntCollection>
RIntIterableIterate. select(IntIterable iterable, IntPredicate predicate, R targetCollection)
static <R extends MutableIntCollection>
RIntIteratorIterate. select(IntIterator iterator, IntPredicate predicate, R targetCollection)
-
Uses of IntPredicate in org.eclipse.collections.impl.utility.primitive
Methods in org.eclipse.collections.impl.utility.primitive with parameters of type IntPredicate Modifier and Type Method Description static <V> LazyIterable<V>
LazyIntIterate. collectIf(IntIterable iterable, IntPredicate predicate, IntToObjectFunction<? extends V> function)
Creates a deferred filtering and transforming int iterable for the specified int iterable.static LazyIntIterable
LazyIntIterate. select(IntIterable iterable, IntPredicate predicate)
Creates a deferred filtering int iterable for the specified int iterable.
-