Parser Combinator crate. Provides a simple parser combinator library for Rust.
README is subject to change.
Look at the documentation for more examples. ```Rust let res = parse( "Hello World", map( sequence!(string("Hello"), spaces(), string("World")), |r| Ok(vec![r.join("")]), ), );
asserteq!( res.unwrap().val, vec!["Hello World".tostring()] ); ```