@FunctionalInterface
public interface IntPredicate
extends java.util.function.IntPredicate
| Modifier and Type | Method and Description |
|---|---|
static IntPredicate |
alwaysFalse()
Creates a Always false function that may be useful if you don't need to process information or just want a default.
|
static IntPredicate |
alwaysTrue()
Creates a Always true function that may be useful if you don't need to process information or just want a default.
|
default IntPredicate |
and(java.util.function.IntPredicate other)
Deprecated.
|
default IntPredicate |
andType(IntPredicate other)
A Type specific and-function helper function that reduces boxing/unboxing
|
default IntPredicate |
negate() |
default IntPredicate |
or(java.util.function.IntPredicate other)
Deprecated.
|
default IntPredicate |
orType(IntPredicate other)
A Type specific or-function helper function that reduces boxing/unboxing
|
boolean |
test(int k)
Type Specific get function to reduce boxing/unboxing
|
boolean test(int k)
test in interface java.util.function.IntPredicatek - the value that should be processedstatic IntPredicate alwaysTrue()
static IntPredicate alwaysFalse()
default IntPredicate andType(IntPredicate other)
other - the other function that should be merged with.@Deprecated default IntPredicate and(java.util.function.IntPredicate other)
and in interface java.util.function.IntPredicatedefault IntPredicate negate()
negate in interface java.util.function.IntPredicatedefault IntPredicate orType(IntPredicate other)
other - the other function that should be merged with.@Deprecated default IntPredicate or(java.util.function.IntPredicate other)
or in interface java.util.function.IntPredicate