1#[doc = include_str!("../README.md")] 2#[cfg(not(doctest))] 3pub mod nfa; 4pub mod translation; 5 6use std::sync::atomic::AtomicU32; 7pub static TERMINAL_COUNT: AtomicU32 = AtomicU32::new(0);