lib-base-sig.sml

来自「这是我们参加06年全国开源软件的竞赛作品」· SML 代码 · 共 25 行

SML
25
字号
(* lib-base-sig.sml * * COPYRIGHT (c) 1993 by AT&T Bell Laboratories.  See COPYRIGHT file for details. *)signature LIB_BASE =  sig    exception Unimplemented of string	(* raised to report unimplemented features *)    exception Impossible of string	(* raised to report internal errors *)    exception NotFound	(* raised by searching operations *)    val failure : {module : string, func : string, msg : string} -> 'a	(* raise the exception Fail with a standard format message. *)    val version : {date : string, system : string, version_id : int list}    val banner : string  end (* LIB_BASE *)

⌨️ 快捷键说明

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