package saker.util.io.function
Functional interface similar to BiFunction but is usable in an I/O error-prone context.
The method of this interface may throw an IOException.
TThe type of the first argument.
UThe type of the second argument.
RThe return type of the function.
public R | apply( Applies the function to the given arguments. |
Applies the function to the given arguments.
tThe first argument.
uThe second argument.
The calculated result value.
IOExceptionIn case of I/O error.