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