skip_while

Function skip_while 

Source
pub fn skip_while<'a>(
    cond: impl Fn(char) -> bool,
) -> impl Fn(&'a str) -> ParseResult<'a, ()>
Expand description

Skip the input while the condition is true.