package opam-core

  1. Overview
  2. Docs

Wrapper on Jsonm; only needed for some debug options

type t = [
  1. | `Null
  2. | `Bool of bool
  3. | `Float of float
  4. | `String of string
  5. | `A of t list
  6. | `O of (string * t) list
]
val to_string : t -> string
val of_string : string -> t
val append : string -> t -> unit
val flush : Pervasives.out_channel -> unit