Skip to main content

vortex_array/arrays/shared/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4mod array;
5mod vtable;
6
7pub use array::SharedArrayExt;
8pub use array::SharedArraySlotsExt;
9pub use array::SharedData;
10pub use array::SharedSlots;
11pub use array::SharedSlotsView;
12pub use vtable::Shared;
13pub use vtable::SharedArray;
14
15#[cfg(test)]
16mod tests;