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::ListArray;
6pub use array::ListArrayParts;
7
8pub(crate) mod compute;
9
10mod vtable;
11pub use vtable::ListVTable;
12
13#[cfg(feature = "_test-harness")]
14mod test_harness;
15
16#[cfg(test)]
17mod tests;