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

math.function.DoubleUnaryOperator Maven / Gradle / Ivy

There is a newer version: 0.9.5
Show newest version
package math.function;

/**
 * Represents an operation on a single {@code double}-valued operand that produces
 * a {@code double}-valued result.
 */
public interface DoubleUnaryOperator {
    /**
     * Applies this operator to the given operand.
     *
     * @param x the operand
     * @return the operator result
     */
    double applyAsDouble(double x);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy