Skip to main content

vortex_array/arrays/list/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4mod array;
5pub use array::ListArrayExt;
6pub use array::ListData;
7pub use array::ListDataParts;
8pub use vtable::ListArray;
9
10pub(crate) mod compute;
11
12mod vtable;
13pub use vtable::List;
14
15#[cfg(feature = "_test-harness")]
16mod test_harness;
17
18#[cfg(test)]
19mod tests;