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