Function combine::skip_many1 [] [src]

pub fn skip_many1<P>(p: P) -> SkipMany1<P> where
    P: Parser

Parses p one or more times ignoring the result.

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