Terms
Source
type term_escape = [ | `Error of bool * string| `Help of Cmdliner_manpage.format * string option
]Source
type 'a parser =
Cmdliner_info.Eval.t ->
Cmdliner_cline.t ->
('a, [ `Parse of string | term_escape ]) Stdlib.resultType type for command line parser. given static information about the command line and a command line to parse returns an OCaml value.
The type for terms. The list of arguments it can parse and the parsing function that does so.

