Parses the specified character.
public static IParser<char> Char(char ch)
Parses a single character if the specified predicate returns true.
public static IParser<char> Char(Func<char, bool> test)