| 21 | To runningMean; |
| 22 | Tw runningCount; |
| 23 | MeanOp(Ti mean, Tw count) |
| 24 | : transform(), runningMean(transform(mean)), runningCount(count) {} |
| 25 | |
| 26 | /// Prevents the optimzation of the mean calculation by some compiler flags |
| 27 | /// specifically -march=native. |
nothing calls this directly
no test coverage detected