
com.thejohnfreeman.function.Function5 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 five 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 fifth argument
* @param the type of the result
*/
@FunctionalInterface
public interface Function5
{
R apply(A a, B b, C c, D d, E e);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy