Cmdliner_arg
Command line arguments as terms.
module Completion : sig ... end
module Conv : sig ... end
type 'a t = 'a Cmdliner_term.t
val info :
?deprecated:string ->
?absent:string ->
?docs:string ->
?docv:string ->
?doc:string ->
?env:Cmdliner_info.Env.info ->
string list ->
info
val value : 'a t -> 'a Cmdliner_term.t
val required : 'a option t -> 'a Cmdliner_term.t
val non_empty : 'a list t -> 'a list Cmdliner_term.t
val last : 'a list t -> 'a Cmdliner_term.t
val man_format : Cmdliner_manpage.format Cmdliner_term.t
val stdopt_version : docs:string -> bool Cmdliner_term.t
val stdopt_help : docs:string -> Cmdliner_manpage.format option Cmdliner_term.t
val bool : bool conv
val char : char conv
val int : int conv
val nativeint : nativeint conv
val int32 : int32 conv
val int64 : int64 conv
val float : float conv
val string : string conv
val enum : ?docv:string -> (string * 'a) list -> 'a conv
val filepath : string conv
val dirpath : string conv
val file : string conv
val dir : string conv
val non_dir_file : string conv
val conv' : ?docv:string -> ('a Conv.parser * 'a Conv.fmt) -> 'a conv
val conv_parser : 'a conv -> string -> ('a, [ `Msg of string ]) Stdlib.result
val conv_docv : 'a conv -> string