All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.annimon.stream.function.DoubleBinaryOperator Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package com.annimon.stream.function;

/**
 * Represents an operation on two {@code double}-valued operands
 * that produces a {@code double}-valued result.
 *
 * @since 1.1.4
 * @see BinaryOperator
 */
public interface DoubleBinaryOperator {

    /**
     * Applies this operator to the given operands.
     *
     * @param left  the first operand
     * @param right  the second operand
     * @return the operator result
     */
    double applyAsDouble(double left, double right);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy