saker.build Documentation TaskDoc JavaDoc Packages
public interface TriConsumer<T, U, V>
Functional interface similar to Consumer, but takes 3 arguments intead of 1.
TThe type of the first argument.
UThe type of the second argument.
VThe type of the third argument.
Methods
public void
accept(T t, U u, V v)
Performs the operation for the given arguments.
public abstract void accept(T t, U u, V v)
Performs the operation for the given arguments.
tThe first argument.
uThe second argument.
vThe third argument.