com.jfreeman.function.TriFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lazy Show documentation
Show all versions of lazy Show documentation
A library for type-safe, tractable lazy evaluation and late binding in Java.
package com.jfreeman.function;
/**
* A function of three arguments.
*
* @param the type of the first argument
* @param the type of the second argument
* @param the type of the third argument
* @param the type of the result
* @author jfreeman
*/
public interface TriFunction {
R apply(T t, U u, V v);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy