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

net.finmath.functions.DoubleTernaryOperator Maven / Gradle / Ivy

Go to download

finmath lib is a Mathematical Finance Library in Java. It provides algorithms and methodologies related to mathematical finance.

The newest version!
/*
 * Created on 07.02.2014.
 *
 * (c) Copyright Christian P. Fries, Germany. Contact: [email protected].
 */
package net.finmath.functions;

/**
 * Functional interface for functions mapping (double,double,double) to double.
 *
 * @author Christian Fries
 * @see java.util.function.DoubleUnaryOperator
 * @version 1.0
 */
@FunctionalInterface
public interface DoubleTernaryOperator {
	/**
	 * Applies this operator to the given operands.
	 *
	 * @param x the first operand
	 * @param y the second operand
	 * @param z the third operand
	 * @return the operator result
	 */
	double applyAsDouble(double x, double y, double z);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy