package piqilib

  1. Overview
  2. Docs
type float64 = float
type uint64 = int64
type float = float64
type binary = string
type word = string
type name = word
type piq = [
  1. | `binary of binary
  2. | `bool of bool
  3. | `float of float
  4. | `int of int64
  5. | `list of Piq_piqi.piq_list
  6. | `name of name
  7. | `named of Piq_piqi.named
  8. | `raw_string of binary
  9. | `splice of Piq_piqi.splice
  10. | `string of string
  11. | `text of string
  12. | `typed of Piq_piqi.typed
  13. | `typename of name
  14. | `uint of uint64
  15. | `word of word
]
type piq_node = Piq_node.t
type loc = Loc.t
type piq_list = piq_node list
type named = Named.t
type splice = Splice.t
type typed = Typed.t