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