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 append : string -> t -> unitval flush : Stdlib.out_channel -> unitval to_string : ?minify:bool -> t -> string