org.codefilarete.tool.function.TriConsumer Maven / Gradle / Ivy
package org.codefilarete.tool.function;
/**
* @author Guillaume Mary
*/
@FunctionalInterface
public interface TriConsumer {
/**
* Performs this operation on the given arguments.
*
* @param t the first input argument
* @param u the second input argument
*/
void accept(T t, U u, V v);
}