Package fj

Interface F5<A,​B,​C,​D,​E,​F$>

  • Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface F5<A,​B,​C,​D,​E,​F$>
    A transformation function of arity-5 from A, B, C, D and E to F$.
    • Method Detail

      • f

        F$ f​(A a,
             B b,
             C c,
             D d,
             E e)
        Transform A, B, C, D and E to F$.
        Parameters:
        a - The A to transform.
        b - The B to transform.
        c - The C to transform.
        d - The D to transform.
        e - The E to transform.
        Returns:
        The result of the transformation.