T
- the type of the first argumentU
- the type of the second argumentR
- the type of the result of the function@FunctionalInterface public interface BiFunction<T,U,R>
Modifier and Type | Interface and Description |
---|---|
static class |
BiFunction.Util |
Modifier and Type | Method and Description |
---|---|
R |
apply(T value1,
U value2)
Applies this function to the given arguments.
|