Interface BiFunction<T,U,R>
public interface BiFunction<T,U,R>
Represents a function that accepts two arguments and produces a result.
This is the two-arity specialization of
Function for representing
functions f(T, U) → R.- See Also:
-
Method Summary
-
Method Details
-
apply
Applies this function to the given arguments.- Parameters:
t- the first function argumentu- the second function argument- Returns:
- the function result
-