All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fj.F3Functions Maven / Gradle / Ivy

package fj;

/**
 * Created by MarkPerry on 6/04/2014.
 */
public final class F3Functions {


  private F3Functions() {
  }

  /**
     * Partial application.
     *
     * @param a The A to which to apply this function.
     * @return The function partially applied to the given argument.
     */
  public static  F2 f(final F3 f, final A a) {
        return (b, c) -> f.f(a, b, c);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy