Interface CheckedToDoubleBiFunction<T,U,E extends Exception>
- Type Parameters:
T
- the type of the first argument to the functionU
- the type of the second argument to the functionE
- exception-type that can be thrown duringapplyAsDouble
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Like
ToDoubleBiFunction
but can also thrown an exception.- Author:
- Owen Feehan
-
Method Summary
Modifier and TypeMethodDescriptiondouble
applyAsDouble
(T t, U u) Applies this function to the given arguments.
-
Method Details
-
applyAsDouble
Applies this function to the given arguments.- Parameters:
t
- the first function argument.u
- the second function argument.- Returns:
- the function result.
- Throws:
E
- if an error occurs.
-