Calculates ex.
import std.math.operations : feqrel; import std.math.constants : E; assert(exp(0.0) == 1.0); assert(exp(3.0).feqrel(E * E * E) > 16);
See Implementation
Calculates ex.