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