Parser.Char method (1 of 2)

Parses the specified character.

public static IParser<char> Char(char ch)

See Also


Parser.Char method (2 of 2)

Parses a single character if the specified predicate returns true.

public static IParser<char> Char(Func<char, bool> test)

See Also