Interface DoubleBinaryOperator

All Superinterfaces:
BiFunction<Double,Double,Double>, BinaryOperator<@NotNull Double>, DoubleBinaryOperator
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface DoubleBinaryOperator extends BinaryOperator<@NotNull Double>, DoubleBinaryOperator
Represents an operation on a single double operand that produces a double result. This is the primitive type specialization of UnaryOperator for double.
See Also: