コード例 #1
0
 /// <summary>
 /// Creates a parser with a grammar that matches the specified string of characters.
 /// </summary>
 /// <param name="value">The string of characters to match.</param>
 /// <returns>A parser with a grammar that matches the specified string.</returns>
 public IParser <char, string> Word(string value)
 {
     return(parser.Word(value));
 }