Function not_starting_with

Source
pub fn not_starting_with<'a, I, E>(
    patterns: I,
) -> Box<dyn Parser<char, Vec<char>, Error = E> + 'a>
where I: IntoIterator<Item = &'a str>, E: Error<char> + 'a,
Expand description

Parses a string until it diverges from all of the patterns.