parse method

ArgResults parse(
  1. Iterable<String> args
)

Parses args, a list of command-line arguments, matches them against the flags and options defined by this parser, and returns the result.

Implementation

ArgResults parse(Iterable<String> args) =>
    Parser(null, this, Queue.of(args)).parse();