Parser.Concat method (1 of 2)

Concatenates the successfully parsed collection of strings into a single successfully parsed string.

public static IParser<string> Concat(this IParser<IEnumerable<string>> parser)

See Also


Parser.Concat<T> method (2 of 2)

Concatenates the two successfully parsed collections.

public static IParser<IReadOnlyList<T>> Concat<T>(this IParser<IEnumerable<T>> firstParser, 
    IParser<IEnumerable<T>> secondParser)

See Also