Runtime command-line arguments
The type for runtime command-line arguments. Similar to Functoria_key.Arg.t but only available at runtime.
val opt : 'a Cmdliner.Arg.converter -> 'a -> Cmdliner.Arg.info -> 'a topt is the runtime companion of Functoria_key.Arg.opt.
val required : 'a Cmdliner.Arg.converter -> Cmdliner.Arg.info -> 'a trequired is the runtime companion of Functoria_key.Arg.required.
val key : ?default:'a -> 'a Cmdliner.Arg.converter -> Cmdliner.Arg.info -> 'a tkey is either opt or runtime, depending if ~default is provided.
val flag : Cmdliner.Arg.info -> bool tflag is the runtime companion of Functoria_key.Arg.flag.