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