Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 466 Bytes

AtMost.md

File metadata and controls

15 lines (10 loc) · 466 Bytes

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