saker.util Documentation TaskDoc JavaDoc Packages
public interface TriFunction<T, U, V, R>
Functional interface similar to Function, but takes 3 arguments instead of 1.
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
apply(T t, U u, V v)
Applies the function to the given arguments.
public abstract R apply(T t, U u, V v)
Applies the function to the given arguments.
tThe first argument.
uThe second argument.
vThe third argument.
The calculated result value.