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