pub fn rolling_min_i64(data: &[i64], window: usize) -> Vec<Option<i64>>
Rolling minimum over i64 data using monotonic deque. O(n) amortized.
Elements before the window is full are None.
None