pub trait RollingAggWindowNoNulls<'a, T: NativeType> {
    fn new(slice: &'a [T], start: usize, end: usize) -> Self;
    unsafe fn update(&mut self, start: usize, end: usize) -> T;
}

Required Methods§

Update and recompute the window

Safety

start and end must be within the windows bounds

Implementors§