//! Automaton combinators.
//!
//! Combinators build new automata from existing ones without eagerly copying
//! all rules. In Phase 1 these are simple, correctness-oriented versions. They
//! are useful as building blocks and as a reference point for faster indexed
//! versions later.
pub use Determinized;
pub use InvHom;
pub use Mapped;
pub use Product;