lexer-rs 0.0.4

Lexical anaylzer framework for context-free text parsing into tokens
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod lexer_of_str;
mod lexer_of_string;
mod parser_iter;
mod simple_parse_error;
mod traits;

pub use parser_iter::ParserIterator;

pub use lexer_of_str::LexerOfStr;
pub use lexer_of_string::LexerOfString;
pub use traits::{BoxDynLexerParseFn, Lexer, LexerError, LexerParseFn, LexerParseResult};

pub use simple_parse_error::SimpleParseError;