Comulative density function interface
Call operator
import std.traits, std.mathspecial; class NormalCDF : CDF!real { real opCall(real x) { return normalDistribution(x); } } auto cdf = new NormalCDF; auto x = cdf(0.1); assert(isNormal(x));
See Implementation
Comulative density function interface