Function glue::combinators::matchers::one_of

source ยท
pub fn one_of(characters: &'static str) -> impl MatchParser
Expand description

Match the next character against one of these characters.

assert!(is(one_of("abcdef")).test("foobar"));