saker.build Documentation TaskDoc JavaDoc Packages
public interface IOTriFunction<T, U, V, R>
Functional interface similar to TriFunction 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.
VThe type of the third argument.
RThe return type of the function.
Methods
public R
accept(T t, U u, V v)
Applies the function to the given arguments.
public abstract R accept(T t, U u, V v) throws IOException
Applies the function to the given arguments.
tThe first argument.
uThe second argument.
vThe third argument.
The calculated result value.
IOExceptionIn case of I/O error.