blob: b9ee398f748d027a96f10fd19d055689748bc0f0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//! This file provides a structure that implements the trait
//! [`NFA`][super::Nfa] and another that umplements the trait
//! [`Regex`][super::Regex].
pub mod nfa;
pub mod regex;
#[cfg(test)]
mod default_nfa_test {}
|