⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pp-desc-fn.sml

📁 这是我们参加06年全国开源软件的竞赛作品
💻 SML
字号:
(* pp-desc-fn.sml * * COPYRIGHT (c) 1997 Bell Labs, Lucent Technologies. * * This interface provides a declarative way to specify pretty-printing. *)functor PPDescFn (S : sig    include PP_STREAM      where type indent = PPDesc.indent      where type pp_desc = (token, style, device) PPDesc.pp_desc  end) :> PP_DESC =  struct    structure PPS = S    structure D = PPDesc    type pp_desc = PPS.pp_desc    type token = PPS.token    type style = PPS.style    type indent = PPS.indent    val hBox    = D.HBox    val vBox    = D.VBox    val hvBox   = D.HVBox    val hovBox  = D.HOVBox    val box     = D.Box    val token   = D.Token    val string  = D.String    val style   = D.Style    val break   = D.Break    fun space n = D.Break{nsp = n, offset = 0}    val cut     = D.Break{nsp = 0, offset = 0}    val newline = D.NewLine    val control = D.Control  end;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -