org.codefilarete.tool.function.TriFunction Maven / Gradle / Ivy
package org.codefilarete.tool.function;
/**
* @author Guillaume Mary
*/
@FunctionalInterface
public interface TriFunction {
/**
* Applies this function to the given arguments.
*
* @param t the first function argument
* @param u the second function argument
* @param v the third function argument
* @return the function result
*/
R apply(T t, U u, V v);
}