blob: 115bea5d0f46ca5cfc0f2c51f8574bfda50d635b (
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 implements the trait
//! [`Regex`][super::Regex].
pub mod nfa;
pub mod regex;
#[cfg(test)]
mod default_nfa_test {}
|