pub trait MeanN<T> {
    fn mean(&self) -> Option<T>;
}
Expand description

The Mean trait implements the calculation of a mean.

Required methods

Implementors