Interface BiLongPredicate
-
- All Known Subinterfaces:
BiLongPredicate.StatefulBiLongPredicate
public interface BiLongPredicate
A boolean predicate over tuples of two longs.- Since:
- 7.6.1
- Author:
- Pavel Klinov
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
BiLongPredicate.BiLongFunction<T>
static interface
BiLongPredicate.StatefulBiLongPredicate
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static BiLongPredicate
alwaysTrue()
static <T> BiLongPredicate.StatefulBiLongPredicate
of(ResettablePredicate<T> predicate, BiLongPredicate.BiLongFunction<T> toObj)
boolean
test(long first, long second)
-
-
-
Method Detail
-
test
boolean test(long first, long second)
-
of
static <T> BiLongPredicate.StatefulBiLongPredicate of(ResettablePredicate<T> predicate, BiLongPredicate.BiLongFunction<T> toObj)
-
alwaysTrue
static BiLongPredicate alwaysTrue()
-
-