fj.F5 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functionaljava Show documentation
Show all versions of functionaljava Show documentation
Functional Java is an open source library that supports closures for the Java programming language
package fj;
/**
* A transformation function of arity-5 from A
, B
, C
,
* D
and E
to F$
. This type can be represented using the Java
* 7 closure syntax.
*
* @version %build.number%
*/
public interface F5 {
/**
* Transform A
, B
, C
, D
and E
to
* F$
.
*
* @param a The A
to transform.
* @param b The B
to transform.
* @param c The C
to transform.
* @param d The D
to transform.
* @param e The E
to transform.
* @return The result of the transformation.
*/
public F$ f(A a, B b, C c, D d, E e);
}