Parser.AtLeast<T> method

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

public static IParser<IReadOnlyList<T>> AtLeast<T>(this IParser<T> parser, int atLeast)

See Also