pub fn none_of<T, L, E>(list: L) -> impl FnMut(T) -> IResult<T, T::Item, E>where
    T: InputIter + InputLength + InputTake,
    for<'tok> L: FindToken<&'tok T::Item>,
    E: ParseError<T>,
Expand description

Recognizes a grapheme clusters/segments NOT in the given list.