0xParser

Parser Combinator crate.

Info

README is subject to change.

How to use

```Rust let res = parse( "Hello World", map( sequence!(string("Hello"), spaces(), string("World")), |r| Ok((r.0, r.1 .0, r.1 .1)), ), );

asserteq!( res.unwrap(), ("Hello".tostring(), " ".tostring(), "World".tostring()) ); ```