GetoptResult

The result of the getopt function.

The GetoptResult contains two members. The first member is a boolean with the name helpWanted. The second member is an array of Option. The array is accessable by the name options.

struct GetoptResult {}

Members

Variables

helpWanted
bool helpWanted;

Flag indicating if help was requested

options
Option[] options;

All possible options

Meta