pub fn not_containing<'a, I, E>(
patterns: I,
) -> impl Parser<char, String, Error = E> + 'a
Expand description
Parses any non-empty string that does not contain any of the patterns as a substring.
ยงPanics
If any of the patterns is the empty string (""
).