reifydb_flow/window/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4//! Shared windowed-aggregation engine: one schema-agnostic core behind both faces, the sdk drivers (static `Row`
5//! output) and the flow Window/Aggregate operators (dynamic `Columns`/`RowShape` output).
6
7pub mod accumulator;
8pub mod coord;
9pub mod engine;
10pub mod kind;
11pub mod meta;
12pub mod mint;
13pub mod span;