package scaml

  1. Overview
  2. Docs
type t =
  1. | Unit
  2. | Bool of bool
  3. | Int of Z.t
  4. | String of string
  5. | Bytes of string
  6. | Option of t option
  7. | List of t list
  8. | Set of t list
  9. | Map of (t * t) list
  10. | Pair of t * t
  11. | Left of t
  12. | Right of t
  13. | Timestamp of Z.t
  14. | Code of Opcode.t list
val pp : Spotlib.Spot.Format.formatter -> t -> unit

Print in Micheline

val to_micheline : ?block_comment:bool -> t -> Mline.t