@FunctionalInterface public interface CheckedIntBinaryOperator
IntBinaryOperator that allows for checked exceptions.| Modifier and Type | Method | Description |
|---|---|---|
int |
applyAsInt(int left,
int right) |
Applies this operator to the given operands.
|
static IntBinaryOperator |
sneaky(CheckedIntBinaryOperator operator) |
|
static IntBinaryOperator |
unchecked(CheckedIntBinaryOperator operator) |
|
static IntBinaryOperator |
unchecked(CheckedIntBinaryOperator operator,
Consumer<Throwable> handler) |
int applyAsInt(int left,
int right)
throws Throwable
left - the first operandright - the second operandThrowablestatic IntBinaryOperator sneaky(CheckedIntBinaryOperator operator)
static IntBinaryOperator unchecked(CheckedIntBinaryOperator operator)
static IntBinaryOperator unchecked(CheckedIntBinaryOperator operator, Consumer<Throwable> handler)
Copyright © 2018. All rights reserved.