package atd

  1. Overview
  2. Docs
type t = [
  1. | `Block of t list
  2. | `Inline of t list
  3. | `Line of string
]
val to_buffer : ?offset:int -> ?indent:int -> Buffer.t -> t list -> unit
val to_string : ?offset:int -> ?indent:int -> t list -> string
val to_channel : ?offset:int -> ?indent:int -> out_channel -> t list -> unit
val to_stdout : ?offset:int -> ?indent:int -> t list -> unit