@FunctionalInterface
public interface ThrowingBiFunction<T1,T2,T3>
BiFunction
which can throw Exception
s.
Used to expand the allowed set of method references to be used by Java 8 functional interfaces.
Modifier and Type | Method and Description |
---|---|
T3 |
apply(T1 t1,
T2 t2) |