package mirage-runtime
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=c534c6b745f0d056ace7e1380243cf3f7e82e3ff819a646080a5754a406df732
sha512=408609452b37d0198776afd020521a6f53b7df3c2bfd7d693c74747e67ae919ec0169d0345098e665f3b3629a81c99cd9294c66b13d5a8ec4889e064fcc16bfa
doc/mirage-runtime.functoria/Functoria_runtime/index.html
Module Functoria_runtimeSource
Functoria runtime.
register t registers the Cmdliner term k as a runtime argument and return a callback f that evaluates to ts' value passed on the command-line.
f will raise Invalid_argument if called before cmdliner's evaluation.
register_arg t registers the Cmdliner term k as a runtime argument and return a callback f that evaluates to ts' value passed on the command-line.
f will raise Invalid_argument if called before cmdliner's evaluation.
val with_argv :
?sections:string list ->
unit Cmdliner.Term.t list ->
string ->
string array ->
unitwith_argv ?sections arguments name argv evaluates the arguments terms on the command-line argv. name is the executable name. sections is a list of sections to include in the man page - useful for enforcing a specific order of sections. On evaluation error the application calls exit(3) with status 64. If `Help or `Version were evaluated, exit(3) is called with status 63.
Exit Codes
argument_error is the exit code used for argument parsing errors: 64.
help_version is the exit code used when help/version is used: 63.