hopr_statistics/lib.rs
1#[cfg(feature = "moving")]
2pub mod moving;
3
4#[cfg(feature = "moving")]
5pub use moving::{
6 exponential::ExponentialMovingAverage,
7 simple::{NoSumSMA, SMA, SingleSumSMA},
8};
9
10#[cfg(feature = "weighted")]
11pub mod weighted;
12
13#[cfg(feature = "weighted")]
14pub use weighted::WeightedCollection;