parser-combinators 0.7.1

**DEPRECEATED** Parser combinators based on the Haskell library parsec. This library has been renamed to combine. See https://crates.io/crates/combine for more recent versions **DEPRECEATED**
Documentation
1
2
3
4
5
6
7
8
9
10

extern crate parser_combinators;
use parser_combinators::{many, Parser};
use parser_combinators::char::letter;

#[test]
fn readme() {
    let result = many(letter()).parse("hello world");
    assert_eq!(result, Ok(("hello".to_string(), " world")));
}