vortex_array/expr/functions/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4mod execution;
5pub mod scalar;
6mod session;
7mod vtable;
8
9use arcref::ArcRef;
10pub use execution::*;
11pub use session::*;
12pub use vtable::*;
13
14pub type FunctionId = ArcRef<str>;
15pub type ArgName = ArcRef<str>;