| SMLFormat |
structure PrinterParameter : PRINTER_PARAMETER =
struct
datatype parameter =
Newline of string
| Space of string
| Columns of int
| GuardLeft of string
| GuardRight of string
val defaultNewline : string
val defaultSpace : string
val defaultColumns : int
val defaultGuardLeft : string
val defaultGuardRight : string
end
Datatype detail |
---|
datatype parameter =
Newline of string
| Space of string
| Columns of int
| GuardLeft of string
| GuardRight of string
DataConstructor detail |
---|
constructor Newline : string -> parameter
constructor Space : string -> parameter
constructor Columns : int -> parameter
constructor GuardLeft : string -> parameter
constructor GuardRight : string -> parameter
Value detail |
---|
val defaultNewline : string
val defaultSpace : string
val defaultColumns : int
val defaultGuardLeft : string
val defaultGuardRight : string
| SMLFormat: Pretty-Printer library for SML |