Skip to main content

reifydb_engine/flow/compiler/operator/
mod.rs

1// SPDX-License-Identifier: AGPL-3.0-or-later
2// Copyright (c) 2025 ReifyDB
3
4//! Operator-specific compilation implementations
5
6pub mod aggregate;
7pub mod append;
8pub mod apply;
9pub mod distinct;
10pub mod extend;
11pub mod filter;
12pub mod gate;
13pub mod join;
14pub mod map;
15pub mod sort;
16pub mod take;
17pub mod window;