Parse a string into a set of Argument instances. The 'sloppy' option allows for unexpected arguments without error.
Returns false where an error condition occurred, whereupon the arguments should be traversed to discover said condition(s):
auto args = new Arguments; if (! args.parse (...)) Stderr (args.errors(&Stderr.layout.sprint));
See Implementation
Parse a string into a set of Argument instances. The 'sloppy' option allows for unexpected arguments without error.
Returns false where an error condition occurred, whereupon the arguments should be traversed to discover said condition(s):