C | |
| clear [Parseopt] |
Set a boolean field to false
|
| conversion' [Parseopt] |
If you want an option to be able to affect other elements of the option
structure, based on an argument, you can specify
handler = conversion' (fun o s -> {o with ...})
|
H | |
| help [Parseopt] |
Print a help message containing all options
|
O | |
| option_defaults [Parseopt] |
Default values for option parameters
|
P | |
| parse [Parseopt] |
Parse an arbitrary list of strings as if it were command-line arguments
|
| parse_argv [Parseopt] |
Parse Sys.argv
|
S | |
| set [Parseopt] |
Set a boolean field to true
|
| set' [Parseopt] |
If you want an option to be able to affect other elements of the option
structure, you can specify
handler = set' (fun o -> {o with ...})
|
| store [Parseopt] |
Store a value in a field
|
U | |
| usage [Parseopt] |
Print a usage message
|