Parser Combinator crate. (Continuation of the OxParse crate)
https://crates.io/crates/ox_parser (https://crates.io/crates/OxParse is deprecated)
https://docs.rs/ox_parser/0.2.1
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()] ); ```