Function none_of
fn none_of<I, T, Error: ParseError<I>>(list: T) -> impl FnMut(I) -> crate::internal::IResult<I, char, Error>
where
I: Input,
<I as Input>::Item: AsChar,
T: FindToken<char>
Recognizes a character that is not in the provided characters.
Streaming version: Will return Err(nom::Err::Incomplete(_)) if there's not enough input data.
Example
# use ;
# use none_of;
assert_eq!;
assert_eq!;
assert_eq!;