polars_time/windows/
mod.rs

1// Ported and adapted from influxdb.
2// Credits to their work.
3// https://github.com/influxdata/influxdb_iox/blob/main/query/src/func/window/internal.rs
4// https://github.com/influxdata/flux/blob/3d6c47d9113fe0d919ddd3d4eef242dfc38ab2fb/interval/window.go
5// https://github.com/influxdata/flux/blob/1e9bfd49f21c0e679b42acf6fc515ce05c6dec2b/values/time.go#L40
6
7pub(crate) mod bounds;
8pub(crate) mod calendar;
9pub(crate) mod duration;
10pub(crate) mod group_by;
11#[cfg(test)]
12mod test;
13pub(crate) mod window;