math.function.DoubleUnaryOperator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finwhale Show documentation
Show all versions of finwhale Show documentation
Statistical distributions library (in statu nascendi)
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);
}