| SMLFormat |
signature PRINTER_PARAMETER =
sig
datatype parameter =
Newline of string
| Space of string
| Columns of int
| GuardLeft of string
| GuardRight of string
| MaxDepthOfGuards of int option
| MaxWidthOfGuards of int option
| CutOverTail of bool
val defaultNewline : string
val defaultSpace : string
val defaultColumns : int
val defaultGuardLeft : string
val defaultGuardRight : string
val defaultMaxDepthOfGuards : int option
val defaultMaxWidthOfGuards : int option
val defaultCutOverTail : bool
end
| Datatype detail |
|---|
datatype parameter =
Newline of string
| Space of string
| Columns of int
| GuardLeft of string
| GuardRight of string
| MaxDepthOfGuards of int option
| MaxWidthOfGuards of int option
| CutOverTail of bool
| DataConstructor detail |
|---|
constructor Newline : string -> parameter
constructor Space : string -> parameter
constructor Columns : int -> parameter
constructor GuardLeft : string -> parameter
constructor GuardRight : string -> parameter
constructor MaxDepthOfGuards : int option -> parameter
constructor MaxWidthOfGuards : int option -> parameter
constructor CutOverTail : bool -> parameter
| Value detail |
|---|
val defaultNewline : string
val defaultSpace : string
val defaultColumns : int
val defaultGuardLeft : string
val defaultGuardRight : string
val defaultMaxDepthOfGuards : int option
val defaultMaxWidthOfGuards : int option
val defaultCutOverTail : bool
| SMLFormat: Pretty-Printer library for SML |