Skip to main content

vortex_array/arrays/struct_/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4mod array;
5pub use array::StructArray;
6pub use array::StructArrayParts;
7pub(crate) mod compute;
8
9mod vtable;
10pub use vtable::StructVTable;
11
12#[cfg(test)]
13mod tests;