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

com.insightfullogic.lambdabehave.generators.TriFunction Maven / Gradle / Ivy

There is a newer version: 0.4
Show newest version
package com.insightfullogic.lambdabehave.generators;

@FunctionalInterface
public interface TriFunction {

    /**
     * Applies this function to the given arguments.
     *
     * @param t the first function argument
     * @param u the second function argument
     * @param v the third input argument
     * @return the function result
     */
    R apply(T t, U u, V v);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy