- Type Parameters:
T - type of first argument to apply
U - type of second argument to apply
R - type of return value from apply
- All Superinterfaces:
java.util.function.BiFunction<T,U,R>
- 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 ThrowingBiFunction<T,U,R>
extends java.util.function.BiFunction<T,U,R>
A BiFunction that allows for exceptions, rethrowing them as an appropriate
type of RuntimeException.
- Since:
- 0.8.4