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 [`FlexZeroVec`](crate::vecs::FlexZeroVec) for details. |
6 | |
7 | pub(crate) mod owned; |
8 | pub(crate) mod slice; |
9 | pub(crate) mod vec; |
10 | |
11 | #[cfg (feature = "databake" )] |
12 | mod databake; |
13 | |
14 | #[cfg (feature = "serde" )] |
15 | mod serde; |
16 | |
17 | pub use owned::FlexZeroVecOwned; |
18 | pub(crate) use slice::chunk_to_usize; |
19 | pub use slice::FlexZeroSlice; |
20 | pub use vec::FlexZeroVec; |
21 | |