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