Interface FragileBiFunction<Argument1,​Argument2,​Result,​E extends java.lang.Exception>

  • All Known Subinterfaces:
    BiFunction<Argument1,​Argument2,​Result>
    All Known Implementing Classes:
    By, DelegatingBiFunction, PairingFunction
    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 FragileBiFunction<Argument1,​Argument2,​Result,​E extends java.lang.Exception>
    A binary function that can throw a checked Exception.
    See Also:
    BiFunction, FragileFunction
    • Method Detail

      • value

        Result value​(Argument1 argument1,
                     Argument2 argument2)
              throws E extends java.lang.Exception
        Returns the value of this function at the given arguments.
        Throws:
        E extends java.lang.Exception