package piqilib

  1. Overview
  2. Docs
type ast = [
  1. | `any of int
  2. | `binary of string * string
  3. | `bool of bool
  4. | `float of float * string
  5. | `form of ast * ast list
  6. | `int of int64 * string
  7. | `list of ast list
  8. | `name of string
  9. | `named of Named.t
  10. | `raw_string of string
  11. | `string of string * string
  12. | `text of string
  13. | `typed of Typed.t
  14. | `typename of string
  15. | `uint of int64 * string
  16. | `word of string
]
and form_name = [
  1. | `name of string
  2. | `typename of string
  3. | `word of string
]