Package zone.lamprey.function
Interface BiPredicate<T,U>
- Type Parameters:
T- the type of the first argument to the predicateU- the type of the second argument the predicate
- All Superinterfaces:
BiFunction<T,U,Boolean>,BiFunction<T,U,Boolean>,BiPredicate<T,U>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface BiPredicate<T,U> extends BiFunction<T,U,Boolean>, BiPredicate<T,U>
Represents a predicate (boolean-valued function) of two arguments. This is
the two-arity specialization of
Predicate.
This is a functional interface whose
functional method is test(Object, Object).
- Since:
- 1.8
- See Also:
Predicate
-
Method Summary
Modifier and Type Method Description static <T, U> BiPredicate<T,U>alwaysFalse()Returns a predicate that is always false.static <T, U> BiPredicate<T,U>alwaysTrue()Returns a predicate that is always true.default BiPredicate<T,U>and(BiPredicate<? super T,? super U> other)Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.default Booleanapply(T t, U u)Applies this function to the given arguments.default BooleanSupplierapplyPartial(T t, U u)Performs a partial application, resulting in a function that calls this with its argument and the argument given here.default Predicate<U>applyPartialL(T t)Performs a partial application, resulting in a function that calls this with its argument and the argument given here.default Predicate<T>applyPartialR(U u)Performs a partial application, resulting in a function that calls this with its argument and the argument given here.static <T, U> BiPredicate<T,U>isEqual()Returns a predicate that tests if two arguments are equal according toObjects.equals(Object, Object).default BiPredicate<T,U>map(UnaryOperator<Boolean> functor)Lift a function.default BiPredicate<T,U>negate()Returns a predicate that represents the logical negation of this predicate.static <T, U> BiPredicate<T,U>not(BiPredicate<? super T,? super U> target)Returns a predicate that is the negation of the supplied predicate.default BiPredicate<T,U>or(BiPredicate<? super T,? super U> other)Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.booleantest(T t, U u)Evaluates this predicate on the given arguments.Methods inherited from interface zone.lamprey.function.BiFunction
consume, map, mapToDouble, mapToInt, mapToLong, predicate
-
Method Details
-
test
Evaluates this predicate on the given arguments.- Specified by:
testin interfaceBiPredicate<T,U>- Parameters:
t- the first input argumentu- the second input argument- Returns:
trueif the input arguments match the predicate, otherwisefalse
-
apply
Applies this function to the given arguments.- Specified by:
applyin interfaceBiFunction<T,U,Boolean>- Specified by:
applyin interfaceBiFunction<T,U,Boolean>- Parameters:
t- the first function argumentu- the second function argument- Returns:
- the function result
-
applyPartial
Performs a partial application, resulting in a function that calls this with its argument and the argument given here.- Specified by:
applyPartialin interfaceBiFunction<T,U,Boolean>- Parameters:
t- the first function argumentu- the second function argument- Returns:
- the function result
-
applyPartialL
Performs a partial application, resulting in a function that calls this with its argument and the argument given here.- Specified by:
applyPartialLin interfaceBiFunction<T,U,Boolean>- Parameters:
t- the function argument- Returns:
- the function result
-
applyPartialR
Performs a partial application, resulting in a function that calls this with its argument and the argument given here.- Specified by:
applyPartialRin interfaceBiFunction<T,U,Boolean>- Parameters:
u- the function argument- Returns:
- the function result
-
and
Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another. When evaluating the composed predicate, if this predicate isfalse, then theotherpredicate is not evaluated.Any exceptions thrown during evaluation of either predicate are relayed to the caller; if evaluation of this predicate throws an exception, the
otherpredicate will not be evaluated.- Parameters:
other- a predicate that will be logically-ANDed with this predicate- Returns:
- a composed predicate that represents the short-circuiting logical AND
of this predicate and the
otherpredicate - Throws:
NullPointerException- if other is null
-
map
Lift a function.- Parameters:
functor- The function to use in lifting.- Returns:
- A function that passes the result of fn through a functor to produce a lifted function.
-
negate
Returns a predicate that represents the logical negation of this predicate.- Specified by:
negatein interfaceBiPredicate<T,U>- Returns:
- a predicate that represents the logical negation of this predicate
-
or
Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another. When evaluating the composed predicate, if this predicate istrue, then theotherpredicate is not evaluated.Any exceptions thrown during evaluation of either predicate are relayed to the caller; if evaluation of this predicate throws an exception, the
otherpredicate will not be evaluated.- Parameters:
other- a predicate that will be logically-ORed with this predicate- Returns:
- a composed predicate that represents the short-circuiting logical OR
of this predicate and the
otherpredicate - Throws:
NullPointerException- if other is null
-
isEqual
Returns a predicate that tests if two arguments are equal according toObjects.equals(Object, Object).- Type Parameters:
T- the first type of arguments to the predicate.U- the second type of arguments to the predicate.- Returns:
- a predicate that tests if two arguments are equal according to
Objects.equals(Object, Object)
-
not
Returns a predicate that is the negation of the supplied predicate. This is accomplished by returning result of the callingtarget.negate().- Type Parameters:
T- the type of the first argument to the specified predicateU- the type of the second argument to the specified predicate- Parameters:
target- predicate to negate- Returns:
- a predicate that negates the results of the supplied predicate
- Throws:
NullPointerException- if target is null- Since:
- 11
-
alwaysTrue
Returns a predicate that is always true.- Type Parameters:
T- the first type of arguments to the predicate.U- the second type of arguments to the predicate.- Returns:
- a predicate that is always true.
-
alwaysFalse
Returns a predicate that is always false.- Type Parameters:
T- the first type of arguments to the predicate.U- the second type of arguments to the predicate.- Returns:
- a predicate that is always true.
-