Function skip_many

Source
pub fn skip_many<P>(p: P) -> SkipMany<P>
where P: Parser,
Expand description

Parses p zero or more times ignoring the result

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