1/// To access internal modules for visualization or debugging, use the `expose-internals` feature.
23pub mod matcher;
4pub mod regex_set;
5pub mod error;
6pub mod ast;
7pub mod parser;
8pub mod nfa;
9pub mod dfa;
101112pub use matcher::Regex;
13pub use error::RegexError;