package piqilib

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