
com.thejohnfreeman.function.Function3 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.
The newest version!
package com.thejohnfreeman.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
*/
@FunctionalInterface
public interface Function3
{
R apply(A a, B b, C c);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy