[project @ 2002-09-27 23:10:23 by erkok]
[ghc-base.git] / Control / Monad / ST.hs
index 6d19b9c..7341cef 100644 (file)
@@ -2,29 +2,32 @@
 -- |
 -- Module      :  Control.Monad.ST
 -- Copyright   :  (c) The University of Glasgow 2001
--- License     :  BSD-style (see the file libraries/core/LICENSE)
+-- License     :  BSD-style (see the file libraries/base/LICENSE)
 -- 
 -- Maintainer  :  libraries@haskell.org
 -- Stability   :  experimental
 -- Portability :  non-portable (requires universal quantification for runST)
 --
--- $Id: ST.hs,v 1.6 2002/04/24 16:31:38 simonmar Exp $
---
--- The State Transformer Monad, ST
+-- This library provides support for /strict/ state threads, as
+-- described in the PLDI \'94 paper by John Launchbury and Simon Peyton
+-- Jones /Lazy State Threads/.
 --
 -----------------------------------------------------------------------------
 
 module Control.Monad.ST
-      (
-       ST                  -- abstract, instance of Functor, Monad, Typeable.
-      , runST              -- :: (forall s. ST s a) -> a
-      , fixST              -- :: (a -> ST s a) -> ST s a
-      , unsafeInterleaveST  -- :: ST s a -> ST s a
+  (
+       -- * The 'ST' Monad
+       ST,             -- abstract, instance of Functor, Monad, Typeable.
+       runST,          -- :: (forall s. ST s a) -> a
+       fixST,          -- :: (a -> ST s a) -> ST s a
 
-      , unsafeIOToST       -- :: IO a -> ST s a
+       -- * Unsafe operations
+       unsafeInterleaveST,     -- :: ST s a -> ST s a
+       unsafeIOToST,           -- :: IO a -> ST s a
 
-      , RealWorld          -- abstract
-      , stToIO             -- :: ST RealWorld a -> IO a
+       -- * Converting 'ST' to 'IO'
+       RealWorld,              -- abstract
+       stToIO                  -- :: ST RealWorld a -> IO a
       ) where
 
 import Prelude
@@ -32,6 +35,10 @@ import Prelude
 import Control.Monad.Fix
 import Data.Dynamic
 
+#ifdef __HUGS__
+import Hugs.ST
+#endif
+
 #ifdef __GLASGOW_HASKELL__
 import GHC.ST
 import GHC.Base                ( unsafeCoerce#, RealWorld )