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