pub trait Mean {
    fn mean(&self, other: &Self) -> Self;
}

Required Methods

Implementations on Foreign Types

Implementors