Interface FallibleBiFunction<T,U,R,X extends Throwable>

Type Parameters:
T - the type of the 1st argument
U - the type of the 2nd argument
R - the type of the return value
X - the type of the exception potentially being thrown
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 FallibleBiFunction<T,U,R,X extends Throwable>
An alternative to the BiFunction interface that allows the functional method to throw a checked exception.
Author:
Ayco Holleman
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(T arg0, U arg1)
    Applies this function to the given arguments.
  • Method Details

    • apply

      R apply(T arg0, U arg1) throws X
      Applies this function to the given arguments.
      Parameters:
      arg0 - the 1st argument
      arg1 - the 2nd argument
      Returns:
      a value of type R
      Throws:
      X - if the operation fails