Parser.AtLeastOnce<T> method

Succeeds if the parser succeeds at least once. The value is a collection of as many items as can be successfully parsed.

public static IParser<IReadOnlyList<T>> AtLeastOnce<T>(this IParser<T> parser)

See Also