Type Parameters:
T - the type of the first argument to the function
U - the type of the second argument to the function
R - the type of the result of the function
All Known Subinterfaces:
BinaryOperator<T>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

  • Method Summary

    andThen(Function<? super R, ? extends V> after)

    Returns a composed function that first applies this function to its input, and then applies the after function to the result.

    apply(T t, U u)

    Applies this function to the given arguments.

  • Method Details

    • apply

    • andThen