package fj; /** * A transformation function of arity-2 from A and B to C. * This type can be represented using the Java 7 closure syntax. * * @version %build.number% */ public interface F2 { /** * Transform A and B to C. * * @param a The A to transform. * @param b The B to transform. * @return The result of the transformation. */ C f(A a, B b); }