The OpenD Programming Language

fma

Returns (x * y) + z, rounding only once according to the current rounding mode.

version(LDC)
pragma(inline, true) @safe pure nothrow @nogc
real
fma
(
real x
,
real y
,
real z
)

Bugs

Not currently implemented - rounds twice.

Meta