sliding_features 8.0.0

Modular sliding window with various signal processing functions and technical indicators
Documentation
use num::Float;

use crate::View;

/// Greater Than or Equal
/// Will allow values >= clipping_point through and clip other values to the clipping point
#[derive(Debug, Clone)]
pub struct GTE<T, V> {
    view: V,
    clipping_point: T,
    out: Option<T>,
}

impl<T, V> GTE<T, V>
where
    V: View<T>,
    T: Float,
{
    /// Create a new instance with a chained View and a given clipping point
    pub fn new(view: V, clipping_point: T) -> Self {
        debug_assert!(clipping_point.is_finite(), "value must be finite");
        Self {
            view,
            clipping_point,
            out: None,
        }
    }
}

impl<T, V> View<T> for GTE<T, V>
where
    V: View<T>,
    T: Float,
{
    fn update(&mut self, val: T) {
        debug_assert!(val.is_finite(), "value must be finite");
        self.view.update(val);
        let Some(val) = self.view.last() else { return };
        debug_assert!(val.is_finite(), "value must be finite");

        if val >= self.clipping_point {
            self.out = Some(val);
        } else {
            self.out = Some(self.clipping_point);
        }
    }

    fn last(&self) -> Option<T> {
        self.out
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::pure_functions::Echo;

    #[test]
    fn gte() {
        let mut gte = GTE::new(Echo::new(), 1.0);
        gte.update(2.0);
        assert_eq!(gte.last().unwrap(), 2.0);
        gte.update(0.5);
        assert_eq!(gte.last().unwrap(), 1.0);
    }
}