@FunctionalInterface public interface ThrowingBinaryOperator<T> extends BinaryOperator<T>, ThrowingBiFunction<T,T,T>
| Modifier and Type | Method and Description |
|---|---|
default T |
apply(T former,
T latter)
Applies this operator to the given arguments.
|
T |
applyThrowing(T former,
T latter)
Applies this operator to the given arguments.
|
maxBy, minByandThen, fallbackTo, fallbackTo, orReturn, orReturn, orThrow, orThrow, orTryWith, orTryWithandThendefault T apply(T former, T latter)
UncheckedException.apply in interface BiFunction<T,T,T>apply in interface ThrowingBiFunction<T,T,T>T applyThrowing(T former, T latter) throws Exception
applyThrowing in interface ThrowingBiFunction<T,T,T>Exception