@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 java.util.function.IntBinaryOperator |
sneaky(CheckedIntBinaryOperator operator) |
|
static java.util.function.IntBinaryOperator |
unchecked(CheckedIntBinaryOperator operator) |
|
static java.util.function.IntBinaryOperator |
unchecked(CheckedIntBinaryOperator operator,
java.util.function.Consumer<java.lang.Throwable> handler) |
int applyAsInt(int left,
int right)
throws java.lang.Throwable
left - the first operandright - the second operandjava.lang.Throwablestatic java.util.function.IntBinaryOperator sneaky(CheckedIntBinaryOperator operator)
static java.util.function.IntBinaryOperator unchecked(CheckedIntBinaryOperator operator)
static java.util.function.IntBinaryOperator unchecked(CheckedIntBinaryOperator operator, java.util.function.Consumer<java.lang.Throwable> handler)
Copyright © 2018. All rights reserved.