src/Pure/General/susp.ML
changeset 14278 ae499452700a
child 16179 fa7e70be26b0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/Pure/General/susp.ML	Fri Dec 05 19:39:39 2003 +0100
@@ -0,0 +1,34 @@
+signature SUSP =
+sig
+
+type 'a susp
+
+val force : 'a susp -> 'a
+val delay : (unit -> 'a) -> 'a susp
+val value : 'a -> 'a susp
+
+end
+
+structure Susp :> SUSP =
+struct
+
+datatype 'a suspVal
+  = Value of 'a
+  | Delay of unit -> 'a
+
+type 'a susp = 'a suspVal ref
+
+fun force (ref (Value v)) = v
+  | force (r as ref (Delay f)) =
+    let
+	val v = f ()
+    in
+	r := Value v;
+	v
+    end
+
+fun delay f = ref (Delay f)
+
+fun value v = ref (Value v)
+
+end