Concatenates the successfully parsed collection of strings into a single successfully parsed string.
public static IParser<string> Concat(this IParser<IEnumerable<string>> parser)
Concatenates the two successfully parsed collections.
public static IParser<IReadOnlyList<T>> Concat<T>(this IParser<IEnumerable<T>> firstParser,
IParser<IEnumerable<T>> secondParser)