Modifier and Type | Interface and Description |
---|---|
interface |
BinaryIOOperator<T>
Represents an operation upon two operands of the same type, producing a result of the same type as the operands.
|
Modifier and Type | Method and Description |
---|---|
default <V> IOBiFunction<T,U,V> |
IOBiFunction.andThen(IOFunction<? super R,? extends V> after)
Returns a composed function that first applies this function to its input, and then applies the
after function to the result. |
static <T,U,R> IOBiFunction<T,U,R> |
IOBiFunction.checked(BiFunction<? super T,? super U,? extends R> function)
Returns a function that applies the
function function to its input, and unwraps any UncheckedIOException that is thrown by
throwing its cause . |
Modifier and Type | Method and Description |
---|---|
static <T,U,R> BiFunction<T,U,R> |
IOBiFunction.unchecked(IOBiFunction<? super T,? super U,? extends R> function)
Returns a function that applies the
function function to its input, and wraps any IOException that is thrown in an
UncheckedIOException . |
Copyright © 2017–2020. All rights reserved.