pub fn skip_while<'a>( cond: impl Fn(char) -> bool, ) -> impl Fn(&'a str) -> ParseResult<'a, ()>
Skip the input while the condition is true.