pub fn newline<Input>() -> impl Parser<Input, Output = u8, PartialState = ()>Expand description
Parses a newline byte (b'\n').
use combine::Parser;
use combine::parser::byte::newline;
assert_eq!(newline().parse(&b"\n"[..]), Ok((b'\n', &b""[..])));
assert!(newline().parse(&b"\r"[..]).is_err());