![JAR search and dependency download from the Maven repository](/logo.png)
com.jfreeman.function.QuadFunction 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 fourth argument
* @param the type of the result
* @author jfreeman
*/
public interface QuadFunction
{
R apply(T t, U u, V v, W w);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy