| Modifier and Type | Interface and Description |
|---|---|
interface |
CheckedBinaryOperator<T,E extends Throwable>
A checked parallel of
BinaryOperator |
| Modifier and Type | Method and Description |
|---|---|
default <V> CheckedBiFunction<T,U,V,E> |
CheckedBiFunction.andThen(CheckedFunction<? super R,? extends V,? extends E> after)
|
| Modifier and Type | Method and Description |
|---|---|
static <T,U,R> R |
Exceptional.apply(CheckedBiFunction<T,U,R,?> function,
T t,
U u)
Invokes
CheckedFunction.apply(Object) catching any checked
Exceptions rethrowing as unchecked. |
static <C extends AutoCloseable,U,R,E extends Throwable> |
Closing.closeAfterApplying(C closeable,
U instance,
CheckedBiFunction<C,U,R,E> convert)
Applies the bi-function to the closeable, returning the result and closing the closable - checked exceptions are
rethrown as unchecked.
|
static <T,U,R> BiFunction<T,U,R> |
Exceptional.uncheckBiFunction(CheckedBiFunction<T,U,R,?> function)
Convert a
CheckedBiFunction into a BiFunction. |
Copyright © 2016–2018 earcam. All rights reserved.