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;
8mod partition;
9mod remove_merge;
10mod remove_select;
11mod replace;
12mod simplify;
13mod simplify_typed;
14
15pub use partition::*;
16pub use replace::*;
17pub use simplify::*;
18pub use simplify_typed::*;