pub trait MeanN<T> { fn mean(&self) -> Option<T>; }
The Mean trait implements the calculation of a mean.
Mean