Function not_line_ending
fn not_line_ending<T, E: ParseError<T>>(input: T) -> crate::internal::IResult<T, T, E>
where
T: Input + Compare<&'static str>,
<T as Input>::Item: AsChar
Recognizes a string of any char except '\r\n' or '\n'.
Streaming version: Will return Err(nom::Err::Incomplete(_)) if there's not enough input data.
Example
# use ;
# use not_line_ending;
assert_eq!;
assert_eq!;
assert_eq!;
assert_eq!;
assert_eq!;