Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/crates/polars-time/src/windows/mod.rs
6939 views
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
7
pub(crate) mod bounds;
8
pub(crate) mod calendar;
9
pub(crate) mod duration;
10
pub(crate) mod group_by;
11
#[cfg(test)]
12
mod test;
13
pub(crate) mod window;
14
15