| Package | Description |
|---|---|
| com.pivovarit.function |
The
com.pivovarit.function package contains checked equivalents of the java.util.function package |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ThrowingBinaryOperator<T,E extends Exception>
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> ThrowingBiFunction<T1,T2,V,E> |
ThrowingBiFunction.andThen(ThrowingFunction<? super R,? extends V,? extends E> after)
Performs provided action on the result of this ThrowingBiFunction instance
|
default ThrowingBiFunction<T,U,Boolean,E> |
ThrowingBiPredicate.asFunction() |
default ThrowingBiFunction<T,U,Void,E> |
ThrowingBiConsumer.asFunction()
Returns this ThrowingBiConsumer instance as a ThrowingBiFunction
|
| Modifier and Type | Method and Description |
|---|---|
static <T1,T2,R> BiFunction<T1,T2,Optional<R>> |
ThrowingBiFunction.lifted(ThrowingBiFunction<T1,T2,R,?> f) |
static <T1,T2,R> BiFunction<T1,T2,R> |
ThrowingBiFunction.sneaky(ThrowingBiFunction<? super T1,? super T2,? extends R,?> function) |
static <T1,T2,R> BiFunction<T1,T2,R> |
ThrowingBiFunction.unchecked(ThrowingBiFunction<T1,T2,R,?> function) |
Copyright © 2020. All rights reserved.