pub fn one_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 any of the grapheme clusters/segments in the given list.