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 ).
45//! See [`VarZeroVec`](crate::VarZeroVec) for details
67pub(crate) mod components;
8pub(crate) mod error;
9pub(crate) mod lengthless;
10#[cfg(feature = "alloc")]
11pub(crate) mod owned;
12pub(crate) mod slice;
13pub(crate) mod vec;
1415#[cfg(feature = "databake")]
16mod databake;
1718#[cfg(feature = "serde")]
19mod serde;
2021pub use crate::{VarZeroSlice, VarZeroVec};
2223#[doc(hidden)]
24pub use components::VarZeroVecComponents;
2526pub use components::{Index16, Index32, Index8, VarZeroSliceIter, VarZeroVecFormat};
2728#[cfg(feature = "alloc")]
29pub use owned::VarZeroVecOwned;
3031pub use error::VarZeroVecFormatError;