module Make: functor (S : sigend) -> sig .. end
| Parameters: | 
| S | : | sig
  module Key : sig
    type t
    (** The textual representation of a key must not contain '=' or ','. *)
    val of_string : string -> t
    module Map : Map.S with type key = t
  end
  module Value : sig
    type t
    (** The textual representation of a value must not contain ','. *)
    val of_string : string -> t
  end
end |  | 
type 
val default : S.Value.t -> parsed
val set_base_default : S.Value.t -> parsed -> parsed
val add_base_override : S.Key.t -> S.Value.t -> parsed -> parsed
val reset_base_overrides : parsed -> parsed
val set_user_default : S.Value.t -> parsed -> parsed
val add_user_override : S.Key.t -> S.Value.t -> parsed -> parsed
val parse : string -> string -> parsed ref -> unit
type 
| | | Ok | 
| | | Parse_failed of exn | 
val parse_no_error : string ->
       parsed ref -> parse_result
val get : key:S.Key.t -> parsed -> S.Value.t
The present documentation is copyright Institut National de Recherche en Informatique et en Automatique (INRIA). A complete version can be obtained from 
this page.