Function polars_arrow::kernels::rolling::nulls::rolling_sum
source · pub fn rolling_sum<T>(
arr: &PrimitiveArray<T>,
window_size: usize,
min_periods: usize,
center: bool,
weights: Option<&[f64]>
) -> ArrayRefwhere
T: NativeType + IsFloat + PartialOrd + Add<Output = T> + Sub<Output = T>,