pom-trace 4.0.3

PEG parser combinators using operator overloading without macros.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod range;
mod result;
pub mod set;

/// Contains predefined parsers and combinators.
pub mod parser;

/// Utility functions to recognize char class of byte value.
pub mod char_class;

pub use crate::result::{Error, Result, RollbackRecord, RollbackType};

/// Parser type, `Parser<I, O>` is alias of `parser::Parser<'static, I, O>`.
pub type Parser<I, O> = parser::Parser<'static, I, O>;