pub
pub
/// Contains predefined parsers and combinators.
/// Utility functions to recognize char class of byte value.
/// Variants of parser functions specialized for matching UTF-8 strings and returning chars.
/// Method and constructor names/functionality are generally the same as in base parser module.
pub use crate;
/// Parser type, `Parser<I, O>` is alias of `parser::Parser<'static, I, O>`.
pub type Parser<I, O> = Parser;