//! A simple DFA library to construct state machines, fast allocation using an a custom Arena implementation, and safe construction using Rust's borrow checker.
/// The DFA module contains the implementation of the Deterministic Finite Automaton.
/// The NFA module contains the implementation of the Non-Deterministic Finite Automaton.