Function combine::skip_many [] [src]

pub fn skip_many<P>(p: P) -> SkipMany<P> where
    P: Parser

Parses p zero or more times ignoring the result.

let result = skip_many(digit())
    .parse("A");
assert_eq!(result, Ok(((), "A")));