Tinyparse
A tiny library for parsing simple expressions.
Quickstart
use common;
use ;
let hello_or_int = literal.or;
// The parse functions return a result containing what's left of "10" and the actual result.
assert_eq!;
Limitations
Some expressions need lookahead capability or something similar to be parsed. Unfortunately; this library does not include this.If you want lookahead capability, consider implementing your own parser using the Parse
trait.