Trait brassfibre::prelude::NumericAggregation [] [src]

pub trait NumericAggregation<'s> {
    type Coerced;
    fn mean(&'s self) -> Self::Coerced;
    fn var(&'s self) -> Self::Coerced;
    fn unbiased_var(&'s self) -> Self::Coerced;
    fn std(&'s self) -> Self::Coerced;
    fn unbiased_std(&'s self) -> Self::Coerced;
}

Associated Types

Required Methods

Implementors