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

com.thejohnfreeman.function.Function4 Maven / Gradle / Ivy

Go to download

A library for type-safe, tractable lazy evaluation and late binding in Java.

The newest version!
package com.thejohnfreeman.function;

/**
 * A function of four 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
 */
@FunctionalInterface
public interface Function4
{
    R apply(A a, B b, C c, D d);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy