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 [`ZeroMap`](crate::ZeroMap) for details. |
6 | |
7 | mod borrowed; |
8 | mod kv; |
9 | #[allow (clippy::module_inception)] // module is purely internal |
10 | pub(crate) mod map; |
11 | mod vecs; |
12 | |
13 | #[cfg (feature = "databake" )] |
14 | mod databake; |
15 | #[cfg (feature = "serde" )] |
16 | mod serde; |
17 | #[cfg (feature = "serde" )] |
18 | mod serde_helpers; |
19 | |
20 | pub use crate::ZeroMap; |
21 | pub use borrowed::ZeroMapBorrowed; |
22 | pub use kv::ZeroMapKV; |
23 | pub use vecs::{MutableZeroVecLike, ZeroVecLike}; |
24 | |