Attempts to parse the specified text.
public static IParseResult<T> TryParse<T>(this IParser<T> parser, string text)
Attempts to parse the specified text at the specified start index.
public static IParseResult<T> TryParse<T>(this IParser<T> parser, string text, int startIndex)
Attempts to parse the specified text.
public static bool TryParse<T>(this IParser<T> parser, string text, out T value)
Attempts to parse the specified text at the specified start index.
public static bool TryParse<T>(this IParser<T> parser, string text, int startIndex, out T value)