1
2
3
4
5
6
7
8
mod alt;
mod charclass;
mod main;
mod numrange;

pub use main::parse;

type Chars<'a> = std::iter::Peekable<std::str::Chars<'a>>;