[][src]Function nom::character::streaming::none_of

pub fn none_of<I, T, Error: ParseError<I>>(
    list: T
) -> impl Fn(I) -> IResult<I, char, Error> where
    I: Slice<RangeFrom<usize>> + InputIter,
    <I as InputIter>::Item: AsChar + Copy,
    T: FindToken<<I as InputIter>::Item>, 

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

assert_eq!(none_of::<_, _, (_, ErrorKind)>("abc")("z"), Ok(("", 'z')));
assert_eq!(none_of::<_, _, (_, ErrorKind)>("ab")("a"), Err(Err::Error(("a", ErrorKind::NoneOf))));
assert_eq!(none_of::<_, _, (_, ErrorKind)>("a")(""), Err(Err::Incomplete(Needed::Size(1))));