peruse
peruse copied to clipboard
A parser-combinator library for Rust
Results
2
peruse issues
Sort by
recently updated
recently updated
newest added
Adds a 'sugar' parser that tries to skip as much as possible and to keep essential element(s). ``` use peruse::parsers::*; use peruse::slice_parsers::lit; let keep = one_of(vec![lit(3), lit(4)]); let skip =...
Hey, I'm getting this error when trying to combine my own parser using any of the macros, do you have any ideas on maybe I'm doing incorrectly? ``` #[phase(plugin)] extern...