[][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