Module Odoc_utils.Json
type json = [ | `Null| `Bool of bool| `Float of float| `String of string| `Array of Odoc_utils.Json.json list| `Object of (string * Odoc_utils.Json.json) list
]val buffer_add_json :
Stdlib.Buffer.t ->
([< `Array of 'a list
| `Bool of bool
| `Float of float
| `Null
| `Object of (string * 'a) list
| `String of string ] as 'a) ->
unitval buffer_add_json_string : Stdlib.Buffer.t -> string -> unit