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 join;
13pub mod map;
14pub mod sort;
15pub mod take;
16pub mod window;