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