Parser.AtMost<T> method

Always succeeds. The value is a collection of at most the specified number of successfully parsed items.

public static IParser<IReadOnlyList<T>> AtMost<T>(this IParser<T> parser, int atMost)

See Also