pub fn not_line_ending<T, E>(input: T) -> IResult<T, T, E>where
    T: InputTake + InputIter,
    for<'tok> T::Item: PartialEq<&'tok str>,
    E: ParseError<T>,
Expand description

Parses segments until a line ending ("\n" or "\r\n") is found.