Parameter_sig.BuilderSignatures containing the different functors which may be used to generate new command line options.
module WithOutput (_ : sig ... end) : With_outputmodule Zero (_ : Input_with_arg) : Intmodule Empty_string (_ : Input_with_arg) : Stringmodule Fc_Filepath = Filepathmodule String_set (_ : Input_with_arg) : String_setmodule Filled_string_set (_ : sig ... end) : String_setmodule Kernel_function_set (_ : Input_with_arg) : Kernel_function_setmodule Fundec_set (_ : Input_with_arg) : Fundec_setmodule String_list (_ : Input_with_arg) : String_listmodule Filepath_list (_ : sig ... end) : Filepath_listmodule Filepath_map
(V : Value_datatype with type key = Fc_Filepath.Normalized.t)
(_ : sig ... end) :
Map
with type key = Fc_Filepath.Normalized.t
and type value = V.t
and type t = V.t Datatype.Filepath.Map.tmodule Make_map
(K : String_datatype_with_collections)
(V : Value_datatype with type key = K.t)
(_ : sig ... end) :
Map with type key = K.t and type value = V.t and type t = V.t K.Map.tParameter is a map where multibindings are **not** allowed.
module String_map
(V : Value_datatype with type key = string)
(_ : sig ... end) :
Map
with type key = string
and type value = V.t
and type t = V.t Datatype.String.Map.tmodule Kernel_function_map
(V : Value_datatype with type key = Cil_types.kernel_function)
(_ : sig ... end) :
Map
with type key = Cil_types.kernel_function
and type value = V.t
and type t = V.t Cil_datatype.Kf.Map.tAs for Kernel_function_set, by default keys can only be defined functions. Use Parameter_customize.argument_may_be_fundecl to also include pure prototypes.
module Make_multiple_map
(K : String_datatype_with_collections)
(V : Multiple_value_datatype with type key = K.t)
(_ : sig ... end) :
Multiple_map
with type key = K.t
and type value = V.t
and type t = V.t list K.Map.tParameter is a map where multibindings are allowed.
module String_multiple_map
(V : Multiple_value_datatype with type key = string)
(_ : sig ... end) :
Multiple_map
with type key = string
and type value = V.t
and type t = V.t list Datatype.String.Map.tmodule Kernel_function_multiple_map
(V : Multiple_value_datatype with type key = Cil_types.kernel_function)
(_ : sig ... end) :
Multiple_map
with type key = Cil_types.kernel_function
and type value = V.t
and type t = V.t list Cil_datatype.Kf.Map.tAs for Kernel_function_set, by default keys can only be defined functions. Use Parameter_customize.argument_may_be_fundecl to also include pure prototypes.
val parameters : unit -> Typed_parameter.t list