Arguments.this

Constructor.

class Arguments
this
(
string app_name = null
,
string short_desc = null
,
string usage = null
,
string long_desc = null
,
string sp = "-"
,
string lp = "--"
,
char eq = '='
)

Parameters

app_name string

name of the application (to show in the help message)

short_desc string

short description of what the application does (should be one line only, preferably less than 80 characters long)

usage string

how the application is supposed to be invoked

long_desc string

long description of what the application does and how to use it

sp string

string to use as the short prefix (defaults to '-')

lp string

string to use as the long prefix (defaults to '--')

eq char

character to use as the explicit assignment symbol (defaults to '=')

Meta