Interface SMFPartialBiFunctionType<A,​B,​C,​E extends java.lang.Exception>

  • Type Parameters:
    A - The type of the first argument
    B - The type of the second argument
    C - The type of the return value
    E - The type of exceptions raised

    public interface SMFPartialBiFunctionType<A,​B,​C,​E extends java.lang.Exception>
    The type of two-argument partial functions.
    • Method Detail

      • apply

        C apply​(A a,
                B b)
         throws E extends java.lang.Exception
        Apply the function.
        Parameters:
        a - The first argument
        b - The second argument
        Returns:
        A value of C
        Throws:
        E - If required
        E extends java.lang.Exception