Package fj.function

Interface Try3<A,​B,​C,​D,​Z extends java.lang.Exception>


  • public interface Try3<A,​B,​C,​D,​Z extends java.lang.Exception>
    A transformation function of arity-3 from A, B and C to D that may throw an Exception. Used to instantiate a lambda that may throw an Exception before converting to an F3.
    See Also:
    Try.f(Try3)
    • Method Detail

      • f

        D f​(A a,
            B b,
            C c)
        throws Z extends java.lang.Exception
        Throws:
        Z extends java.lang.Exception