The OpenD Programming Language

getFunctionValue

Evaluates function value. It is shortcut for getDerivative of zero order.

import mir.ediff;
@fmamath
alias getFunctionValue(bool strict = true) = getDerivative!(string[].init, strict)

Parameters

strict

The parameter is used when the expression can't evaluate the function. If true, prints error at compile-time; otherwise, getFunctionValues returns NaN.

Meta