@FunctionalInterface
public interface Int2BooleanFunction
extends java.util.function.IntPredicate
| Modifier and Type | Method and Description |
|---|---|
default Int2BooleanFunction |
and(java.util.function.IntPredicate other)
Deprecated.
|
default Int2BooleanFunction |
andType(Int2BooleanFunction other)
A Type specific and-function helper function that reduces boxing/unboxing
|
boolean |
get(int k)
Type Specific get function to reduce boxing/unboxing
|
default Int2BooleanFunction |
negate() |
default Int2BooleanFunction |
or(java.util.function.IntPredicate other)
Deprecated.
|
default Int2BooleanFunction |
orType(Int2BooleanFunction other)
A Type specific or-function helper function that reduces boxing/unboxing
|
default boolean |
test(int k) |
boolean get(int k)
k - the value that should be processeddefault boolean test(int k)
test in interface java.util.function.IntPredicatedefault Int2BooleanFunction andType(Int2BooleanFunction other)
other - the other function that should be merged with.@Deprecated default Int2BooleanFunction and(java.util.function.IntPredicate other)
and in interface java.util.function.IntPredicatedefault Int2BooleanFunction negate()
negate in interface java.util.function.IntPredicatedefault Int2BooleanFunction orType(Int2BooleanFunction other)
other - the other function that should be merged with.@Deprecated default Int2BooleanFunction or(java.util.function.IntPredicate other)
or in interface java.util.function.IntPredicate