Parser Combinator crate.
README is subject to change.
```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()) ); ```