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

com.thejohnfreeman.function.Function6 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 six 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 sixth argument
 * @param  the type of the result
 */
@FunctionalInterface
public interface Function6
{
    R apply(A a, B b, C c, D d, E e, F f);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy