package pla

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type dest =
  1. | File of out_channel
  2. | Buffer of Buffer.t
type t
val appendToBuff : dest -> string -> unit
val newBuffer : unit -> t
val newFile : string -> t
val contents : t -> string
val close : t -> unit
val newline : t -> unit
val indent : t -> unit
val outdent : t -> unit
val append : t -> string -> unit