Package me.saro.commons.function
Interface ThrowableBiFunction<T,U,R>
-
- Type Parameters:
T- input parameter type TU- input parameter type UR- output return type
- 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 ThrowableBiFunction<T,U,R>ThrowableBiFunction- Since:
- 0.1
- Author:
- PARK Yong Seo
- See Also:
Function
-
-
Method Detail
-
apply
R apply(T t, U u) throws java.lang.Exception
- Parameters:
t- input parameter type Tu- input parameter type U- Returns:
- output return
- Throws:
java.lang.Exception- See Also:
Function
-
runtime
static <T,U,R> java.util.function.BiFunction<T,U,R> runtime(ThrowableBiFunction<T,U,R> biFunction)
throws Exception lambda to throws RuntimeException lambda- Parameters:
biFunction-- Returns:
- Since:
- 0.6
-
-