vortex_expr/transform/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4//! A collection of transformations that can be applied to a [`crate::ExprRef`].
5pub mod annotations;
6pub mod immediate_access;
7pub(crate) mod match_between;
8pub mod partition;
9mod remove_merge;
10mod remove_select;
11pub mod replace;
12pub mod simplify;
13pub mod simplify_typed;