package edn

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type json = [
  1. | `Assoc of (string * json) list
  2. | `Bool of bool
  3. | `Float of float
  4. | `Int of int
  5. | `List of json list
  6. | `Null
  7. | `String of string
]
val from_json : ?keywordize:bool -> json -> t
val to_json : t -> json