1 | // This file is part of ICU4X. For terms of use, please see the file |
2 | // called LICENSE at the top level of the ICU4X source tree |
3 | // (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ). |
4 | |
5 | //! See [`VarZeroVec`](crate::VarZeroVec) for details |
6 | |
7 | pub(crate) mod components; |
8 | pub(crate) mod owned; |
9 | pub(crate) mod slice; |
10 | pub(crate) mod vec; |
11 | |
12 | #[cfg (feature = "databake" )] |
13 | mod databake; |
14 | |
15 | #[cfg (feature = "serde" )] |
16 | mod serde; |
17 | |
18 | pub use crate::{VarZeroSlice, VarZeroVec}; |
19 | |
20 | #[cfg (feature = "bench" )] |
21 | #[doc (hidden)] |
22 | pub use components::VarZeroVecComponents; |
23 | |
24 | pub use components::{Index16, Index32, VarZeroVecFormat}; |
25 | |
26 | pub use owned::VarZeroVecOwned; |
27 | |