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