sliding_features 9.1.0

Modular sliding window with various signal processing functions and technical indicators
Documentation
#![deny(missing_docs, rustdoc::missing_crate_level_docs)]
#![warn(clippy::all)]
#![doc = include_str!("../README.md")]

//! The sliding_features crate provides modular, chainable sliding windows
//! for various signal processing function and technical indicators

pub mod pure_functions;
pub mod rolling;
pub mod sliding_windows;

#[cfg(test)]
mod plot;
#[cfg(test)]
mod test_data;

/// The most important Trait, defining methods which each sliding feature needs to implement
pub trait View<T: num::Float> {
    /// Update the state with a new value
    fn update(&mut self, val: T);

    /// Return the last value, if `Some`, then its ready.
    fn last(&self) -> Option<T>;
}

#[cfg(test)]
mod tests {
    // Used in benchmarks.
    #[allow(unused_imports)]
    use criterion::*;
}