Trait basic_dsp_vector::Stats [−][src]
pub trait Stats<T>: Sized { fn empty() -> Self; fn empty_vec(len: usize) -> StatsVec<Self>; fn invalid() -> Self; fn merge(stats: &[Self]) -> Self; fn merge_cols(stats: &[StatsVec<Self>]) -> StatsVec<Self>; fn add(&mut self, elem: T, index: usize); }
Expand description
Operations on statistics.
Required methods
Merges several vectors of statistics into one vector.