Skip to content

Instantly share code, notes, and snippets.

@GuillaumeGomez
Last active September 7, 2015 21:56
Show Gist options
  • Save GuillaumeGomez/4eb4b69241048dfe9ba3 to your computer and use it in GitHub Desktop.
Save GuillaumeGomez/4eb4b69241048dfe9ba3 to your computer and use it in GitHub Desktop.
fn csv_line(input: &[u8]) -> IResult<&[u8], Vec<&[u8]> { terminated!(input, separated_list!(filter!(apply!(check_characters, b"\n\r,")), not_line_ending), line_ending)) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment