[][src]Function parze::one_of

pub fn one_of<'a, T: Clone + 'a + PartialEq, E: ParseError<'a, T> + 'a>(
    expected: impl IntoIterator<Item = impl Borrow<T> + 'a>
) -> Parser<'a, T, T, E>

A parser that accepts one of the given set of symbols.