//! PathMap-backed dictionary family (feature `pathmap-backend`).
//!
//! - [`ascii`] — byte-level (`u8`) [`PathMapDictionary`] (mutable, `RwLock`-guarded).
//! - [`char`] — Unicode (`char`) [`PathMapDictionaryChar`].
//! - [`zipper`] — [`PathMapZipper`] navigator.
//! - [`core`] — the lock-free `TrieRef` substrate ([`TrieRefLike`], [`TrieRefNode`],
//! [`TrieRefNodeChar`]) that all PathMap nodes/zippers descend through.
//! - [`snapshot`] — zero-plumbing, MORK-facing dictionaries ([`PathMapSnapshot`],
//! [`PathMapRef`], and their `Char` variants) for querying a borrowed or
//! `𝒪(1)`-snapshotted `PathMap` directly.
pub use ;
pub use ;
pub use char::;
pub use ;
pub use PathMapZipper;