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