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,
Parses a string until it diverges from all of the patterns.