package piqilib

  1. Overview
  2. Docs
type json = [
  1. | `Null of unit
  2. | `Bool of bool
  3. | `Int of int64
  4. | `Uint of int64
  5. | `Intlit of string
  6. | `Float of float
  7. | `Floatlit of string
  8. | `String of string
  9. | `Stringlit of string
  10. | `Assoc of (string * json) list
  11. | `List of json list
]