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