1extern crate self as vortex_array;
15
16use std::sync::LazyLock;
17
18pub use array::*;
19pub use canonical::*;
20pub use columnar::*;
21pub use executor::*;
22pub use hash::*;
23pub use mask_future::*;
24pub use metadata::*;
25pub use vortex_array_macros::array_slots;
26use vortex_session::VortexSession;
27use vortex_session::registry::Context;
28
29use crate::session::ArraySession;
30
31pub mod accessor;
32pub mod aggregate_fn;
33#[doc(hidden)]
34pub mod aliases;
35mod array;
36pub mod arrays;
37pub mod arrow;
38pub mod buffer;
39pub mod builders;
40pub mod builtins;
41mod canonical;
42mod columnar;
43pub mod compute;
44pub mod display;
45pub mod dtype;
46mod executor;
47pub mod expr;
48mod expression;
49pub mod extension;
50mod hash;
51pub mod iter;
52pub mod kernel;
53pub mod mask;
54mod mask_future;
55pub mod matcher;
56pub mod memory;
57mod metadata;
58pub mod normalize;
59pub mod optimizer;
60mod partial_ord;
61pub mod patches;
62pub mod scalar;
63pub mod scalar_fn;
64pub mod search_sorted;
65pub mod serde;
66pub mod session;
67pub mod stats;
68pub mod stream;
69#[cfg(any(test, feature = "_test-harness"))]
70pub mod test_harness;
71pub mod validity;
72pub mod variants;
73
74pub mod flatbuffers {
75 pub use vortex_flatbuffers::array::*;
77}
78
79pub static LEGACY_SESSION: LazyLock<VortexSession> =
83 LazyLock::new(|| VortexSession::empty().with::<ArraySession>());
84
85pub type ArrayContext = Context<ArrayPluginRef>;