Module com.machinezoo.noexception
Interface ThrowingBinaryOperator<T>
-
- Type Parameters:
-
T
- seeBinaryOperator
- All Superinterfaces:
-
ThrowingBiFunction<T,T,T>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ThrowingBinaryOperator<T> extends ThrowingBiFunction<T,T,T>
Variation ofBinaryOperator
that allows throwing checked exceptions.ThrowingBinaryOperator
is usually implemented by a lambda and passed toCheckedExceptionHandler.fromBinaryOperator(ThrowingBinaryOperator)
. See noexception tutorial.
-
-
Method Summary
-
Methods inherited from interface com.machinezoo.noexception.throwing.ThrowingBiFunction
apply
-
-