[project @ 1999-01-24 14:44:00 by sof]
[ghc-hetmet.git] / ghc / docs / libraries / IOExts.sgml
index b2d1ddd..2af0789 100644 (file)
@@ -58,12 +58,6 @@ simplified memoisation function:
 >               return a
 </verb></tscreen>
 
-<item>
-Operations for coercing an <tt/ST/ action into an <tt/IO/ one, and
-vice versa are also provided. Notice that coercing an <tt/IO/ action
-into an <tt/ST/ action is 'lossy', since any exception raised within the
-<tt/IO/ action will not be caught within the <tt/ST/ monad, as it
-doesn't support (monadic) exceptions.
 </itemize>
 
 <tscreen><verb>
@@ -98,7 +92,5 @@ performGC           :: IO ()
 trace               :: String -> a -> a
 unsafePtrEq         :: a -> a -> Bool
 
-unsafeIOToST       :: IO   a -> ST s a
-stToIO              :: ST s a -> IO a
 </verb></tscreen>