reifydb_core/value/column/transform/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4//! Pure column transforms: append, filter, and take.
5//!
6//! Each transform produces a new column from one or more inputs without mutating the inputs. These are the building
7//! blocks the engine composes when it cannot rewrite an operation as a buffer-level update.
8
9pub mod append;
10pub mod filter;
11pub mod take;