Key.ArgTerms for cross-stage arguments.
This module extends Cmdliner.Arg to allow MetaOCaml-style typed cross-stage persistency of command-line arguments.
val opt : 'a Cmdliner.Arg.conv -> 'a -> Cmdliner.Arg.info -> 'a topt conv v i is similar to Cmdliner.Arg.opt but for cross-stage optional command-line arguments.
val required : 'a Cmdliner.Arg.conv -> Cmdliner.Arg.info -> 'a option trequired conv i is similar to Cmdliner.Arg.required but for cross-stage required command-line arguments.
val flag : Cmdliner.Arg.info -> bool tflag i is similar to Cmdliner.Arg.flag but for cross-stage command-line flags.
val opt_all : 'a Cmdliner.Arg.conv -> Cmdliner.Arg.info -> 'a list tval info :
?deprecated:string ->
?absent:string ->
?docs:string ->
?docv:string ->
?doc:string ->
?env:Cmdliner.Cmd.Env.info ->
string list ->
Cmdliner.Arg.infoSame as Cmdliner.Arg.info.