Module OpamJsonSource
Json encoder; only needed for some debug options
Warning. Assumes given strings are UTF-8 encoded this is not checked by the module.
Sourcetype t = [ | `Null| `Bool of bool| `Float of float| `String of string| `A of t list| `O of (string * t) list
] Sourcetype 'a decoder = t -> 'a option Sourceval append : string -> t -> unit Sourceval to_string : ?minify:bool -> t -> string