fj.F5Functions 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;
/**
* Created by MarkPerry on 6/04/2014.
*/
public final class F5Functions {
private F5Functions() {
}
/**
* Partial application.
*
* @param a The A
to which to apply this function.
* @return The function partially applied to the given argument.
*/
public static F4 f(final F5 f, final A a) {
return (b, c, d, e) -> f.f(a, b, c, d, e);
}
}