Uses of Interface
zone.lamprey.function.BiPredicate
| Package | Description |
|---|---|
| zone.lamprey.function |
Functional interfaces provide target types for lambda expressions
and method references.
|
-
Uses of BiPredicate in zone.lamprey.function
Methods in zone.lamprey.function that return BiPredicate Modifier and Type Method Description static <T, U> BiPredicate<T,U>BiPredicate. alwaysFalse()Returns a predicate that is always false.static <T, U> BiPredicate<T,U>BiPredicate. alwaysTrue()Returns a predicate that is always true.default BiPredicate<T,U>BiPredicate. and(BiPredicate<? super T,? super U> other)Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.static <T, U> BiPredicate<T,U>BiPredicate. isEqual()Returns a predicate that tests if two arguments are equal according toObjects.equals(Object, Object).default BiPredicate<T,U>BiPredicate. map(UnaryOperator<Boolean> functor)Lift a function.default BiPredicate<T,U>ToDoubleBiFunction. mapToPredicate(DoublePredicate functor)Lift a function.default BiPredicate<T,U>ToIntBiFunction. mapToPredicate(IntPredicate functor)Lift a function.default BiPredicate<T,U>ToLongBiFunction. mapToPredicate(LongPredicate functor)Lift a function.default BiPredicate<T,U>BiPredicate. negate()Returns a predicate that represents the logical negation of this predicate.static <T, U> BiPredicate<T,U>BiPredicate. not(BiPredicate<? super T,? super U> target)Returns a predicate that is the negation of the supplied predicate.default BiPredicate<T,U>BiPredicate. or(BiPredicate<? super T,? super U> other)Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.default BiPredicate<T,U>BiFunction. predicate(Predicate<? super R> functor)Lift a function.Methods in zone.lamprey.function with parameters of type BiPredicate Modifier and Type Method Description default BiPredicate<T,U>BiPredicate. and(BiPredicate<? super T,? super U> other)Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.static <T, U> BiPredicate<T,U>BiPredicate. not(BiPredicate<? super T,? super U> target)Returns a predicate that is the negation of the supplied predicate.default BiPredicate<T,U>BiPredicate. or(BiPredicate<? super T,? super U> other)Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.