pub fn rolling_mean<T>( values: &[T], window_size: usize, min_periods: usize, center: bool, weights: Option<&[f64]>) -> ArrayRef where T: NativeType + Float + Sum<T>,