Revision control

Copy as Markdown

Other Tools

// This file is part of ICU4X. For terms of use, please see the file
// called LICENSE at the top level of the ICU4X source tree
//! See [`ZeroMap`](crate::ZeroMap) for details.
mod borrowed;
mod kv;
#[allow(clippy::module_inception)] // module is purely internal
pub(crate) mod map;
mod vecs;
#[cfg(feature = "databake")]
mod databake;
#[cfg(feature = "serde")]
mod serde;
#[cfg(feature = "serde")]
mod serde_helpers;
pub use crate::ZeroMap;
pub use borrowed::ZeroMapBorrowed;
pub use kv::ZeroMapKV;
pub use vecs::{MutableZeroVecLike, ZeroVecLike};