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 [`ZeroMap2d`](crate::ZeroMap2d) for details.
6
7mod borrowed;
8mod cursor;
9pub(crate) mod map;
10
11#[cfg(feature = "databake")]
12mod databake;
13#[cfg(feature = "serde")]
14mod serde;
15
16pub use crate::ZeroMap2d;
17pub use borrowed::ZeroMap2dBorrowed;
18pub use cursor::ZeroMap2dCursor;
19