List of functions and data types in Parse
[a] list1(Parser<a> parser, var ParseState st)
Arguments
parser: The parser to use
st: The current parsing state
Usage
Parse a string into a list of at least 1 item, multiple items separated by whitespace. Equivalent to list(parser,st,1).
Related