Interface EBiFunction<T1,T2,R,E extends Exception>

Type Parameters:
T1 - the type of the first argument to the function
T2 - the type of the second argument to the function
R - the type of the result of the function
E - the type of exception that the function might throw
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 EBiFunction<T1,T2,R,E extends Exception>
Functional interface that represents a function which accepts two arguments and produces a result. It allows for a checked exception to be thrown during execution.
Author:
Syam