/// <summary>
 /// Creates a parser with a grammar that matches one or more consecutive characters until any of the specified
 /// stop characters are parsed and joins them into a <see cref="string"/>, excluding the stop character.
 /// </summary>
 /// <param name="stops">The characters at which to stop consuming characters.</param>
 /// <returns>A parser with a grammar that consumes consecutive characters until any stop character is parsed
 /// or the sequence ends.</returns>
 public IParser <char, string> AnyCharacterUntil(params char[] stops)
 {
     return(parser.AnyCharacterUntil(stops));
 }