T
- The type of the first argument to the function.U
- The type of the second argument to the function.@FunctionalInterface public interface ToDoubleIOBiFunction<T,U>
IOException
throwing equivalent of ToDoubleBiFunction
.Modifier and Type | Method and Description |
---|---|
double |
applyAsDouble(T t,
U u)
Applies this function to the given arguments.
|
static <T,U> ToDoubleIOBiFunction<T,U> |
checked(ToDoubleBiFunction<? super T,? super U> function)
Returns a function that applies the
function function to its input, and unwraps any UncheckedIOException that is thrown by
throwing its cause . |
static <T,U> ToDoubleBiFunction<T,U> |
unchecked(ToDoubleIOBiFunction<? super T,? super U> function)
Returns a function that applies the
function function to its input, and wraps any IOException that is thrown in an
UncheckedIOException . |
double applyAsDouble(T t, U u) throws IOException
t
- The first function argument.u
- The second function argument.IOException
- If an I/O error occurs.static <T,U> ToDoubleBiFunction<T,U> unchecked(ToDoubleIOBiFunction<? super T,? super U> function)
function
function to its input, and wraps any IOException
that is thrown in an
UncheckedIOException
.T
- The type of the first argument to the function.U
- The type of the second argument to the function.function
- The function to apply when the returned function is applied.function
function to its input, and wraps any IOException
that is thrown in an
UncheckedIOException
.NullPointerException
- If function
is null
.static <T,U> ToDoubleIOBiFunction<T,U> checked(ToDoubleBiFunction<? super T,? super U> function)
function
function to its input, and unwraps any UncheckedIOException
that is thrown by
throwing its cause
.T
- The type of the first argument to the function.U
- The type of the second argument to the function.function
- The function to apply when the returned function is applied.function
function to its input, and unwraps any UncheckedIOException
that is thrown.NullPointerException
- If function
is null
.Copyright © 2017–2020. All rights reserved.