
fj.F7Functions Maven / Gradle / Ivy
package fj;
/**
* Created by MarkPerry on 6/04/2014.
*/
public final class F7Functions {
private F7Functions() {
}
/**
* Partial application.
*
* @param a The A
to which to apply this function.
* @return The function partially applied to the given argument.
*/
public static F6 f(final F7 func, final A a) {
return (b, c, d, e, f, g) -> func.f(a, b, c, d, e, f, g);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy