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

com.jfreeman.function.TriFunction Maven / Gradle / Ivy

Go to download

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

There is a newer version: 0.6.0
Show newest version
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