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