//! Dynamic DAWG dictionary family — incrementally updatable automata.
//!
//! - [`ascii`] — byte-level (`u8`) [`DynamicDawg`].
//! - [`char`] — Unicode (`char`) [`DynamicDawgChar`].
//! - [`u64`] — `u64`-labeled [`DynamicDawgU64`] (time-series / sequence keys).
//! - [`zipper`] / [`char_zipper`] / [`u64_zipper`] — zipper navigators.
//! - [`core`] — the unit-generic minimization core ([`DawgCore`], [`DawgNode`])
//! shared by all three variants.
pub use ;
pub use char::;
pub use DynamicDawgCharZipper;
// `self::` disambiguates the child module `core` from the `core` crate.
pub use ;
pub use u64::;
pub use DynamicDawgU64Zipper;
pub use DynamicDawgZipper;