Function skip_space_and_comments

Source
pub fn skip_space_and_comments(input: &str) -> IResult<&str, &str>
Expand description

Skip whitespace and C-style comments

ยงLearning Rust: Manual Parsing and Byte Manipulation

Sometimes you need to go beyond parser combinators! This function manually iterates through bytes for performance