@FunctionalInterface public interface CheckedIntBinaryOperator
IntBinaryOperator that allows for checked exceptions.| Modifier and Type | Method and Description |
|---|---|
int |
applyAsInt(int left,
int right)
Applies this operator to the given operands.
|
static java.util.function.IntBinaryOperator |
unchecked(CheckedIntBinaryOperator operator) |
static java.util.function.IntBinaryOperator |
unchecked(CheckedIntBinaryOperator operator,
java.util.function.Consumer<Throwable> handler) |
int applyAsInt(int left,
int right)
throws Throwable
left - the first operandright - the second operandThrowablestatic java.util.function.IntBinaryOperator unchecked(CheckedIntBinaryOperator operator)
Unchecked#intBinaryOperator(CheckedIntBinaryOperator)}static java.util.function.IntBinaryOperator unchecked(CheckedIntBinaryOperator operator, java.util.function.Consumer<Throwable> handler)
Unchecked#intBinaryOperator(CheckedIntBinaryOperator, Consumer)}Copyright © 2016. All Rights Reserved.