Output range for mean.
import mir.ndslice.slice: sliced; MeanAccumulator!(double, Summation.pairwise) x; x.put([0.0, 1, 2, 3, 4].sliced); assert(x.mean == 2); x.put(5); assert(x.mean == 2.5);
See Implementation
Output range for mean.