Interface BiLongPredicate
-
- All Known Subinterfaces:
BiLongPredicate.StatefulBiLongPredicate
public interface BiLongPredicateA 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 interfaceBiLongPredicate.BiLongFunction<T>static interfaceBiLongPredicate.StatefulBiLongPredicate
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static BiLongPredicatealwaysTrue()static <T> BiLongPredicate.StatefulBiLongPredicateof(ResettablePredicate<T> predicate, BiLongPredicate.BiLongFunction<T> toObj)booleantest(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()
-
-