pom/
lib.rs

1pub mod range;
2mod result;
3pub mod set;
4
5/// Constains predefined parsers and combinators.
6pub mod parser;
7
8/// Utility functions to recognize char class of byte value.
9pub mod char_class;
10
11pub use crate::result::{Error, Result};
12
13/// Parser type, `Parser<I, O>` is alias of `parser::Parser<'static, I, O>`.
14pub type Parser<I, O> = parser::Parser<'static, I, O>;