Function glue::combinators::matchers::one_of
source ยท pub fn one_of(characters: &'static str) -> impl MatchParserExpand description
Match the next character against one of these characters.
assert!(is(one_of("abcdef")).test("foobar"));