Module Odoc_html.JsonSource

Sourcetype json = [
  1. | `Null
  2. | `Bool of bool
  3. | `Float of float
  4. | `String of string
  5. | `Array of json list
  6. | `Object of (string * json) list
]
Sourceval buffer_add_json : Buffer.t -> [< `Array of 'b list | `Bool of bool | `Float of float | `Null | `Object of (string * 'c) list | `String of string ] as 'a -> unit
Sourceval buffer_add_json_string : Buffer.t -> string -> unit
Sourceval to_string : [< `Array of 'b list | `Bool of bool | `Float of float | `Null | `Object of (string * 'b) list | `String of string ] as 'a -> string