package atdgen-codec-runtime

  1. Overview
  2. Docs
type t = [
  1. | `Assoc of (string * t) list
  2. | `Bool of bool
  3. | `Float of float
  4. | `Int of int
  5. | `Intlit of string
  6. | `List of t list
  7. | `Null
  8. | `String of string
  9. | `Tuple of t list
  10. | `Variant of string * t option
]
val constr0 : string -> t
val constr1 : string -> t -> t