All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.codefilarete.tool.function.SerializableTriFunction Maven / Gradle / Ivy

package org.codefilarete.tool.function;

import java.io.Serializable;

/**
 * @author Guillaume Mary
 */
@FunctionalInterface
public interface SerializableTriFunction extends Serializable {
	
	/**
	 * 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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy