pub fn rolling_min<T>(
    values: &[T],
    window_size: usize,
    min_periods: usize,
    center: bool,
    weights: Option<&[f64]>
) -> ArrayRefwhere
    T: NativeType + PartialOrd + NumCast + Mul<Output = T> + Bounded + IsFloat,