/// <summary>
 /// Creates a parser with a grammar that matches the specified character.
 /// </summary>
 /// <param name="value">The <see cref="char"/> to match.</param>
 /// <returns>A parser with a grammar that matches the specified character.</returns>
 public IParser <char, char> Character(char value)
 {
     return(parser.Character(value));
 }