TFL/mask.sml
author sandnerr
Mon, 09 Dec 1996 19:13:13 +0100
changeset 2355 ee9bdbe2ac8a
parent 2112 3902e9af752f
child 3302 404fe31fd8d2
permissions -rw-r--r--
simpset extension moved from HOLCF.ML to One.ML and Tr2.ML

(*---------------------------------------------------------------------------
 * This structure is intended to shield TFL from any constructors already 
 * declared in the environment. In the Isabelle port, for example, there
 * was already a datatype with "|->" being a constructor. In TFL we were
 * trying to define a function "|->", but it failed in PolyML (which conforms
 * better to the Standard) while the definition was accepted in NJ/SML
 * (which doesn't always conform so well to the standard).
 *---------------------------------------------------------------------------*)

structure Mask : Mask_sig =
struct

 datatype 'a binding = |-> of ('a * 'a)   (* infix 7 |->; *)

 datatype mask = ERR 
end;