Remerge concurrent,unique,timeout,st,getopt into base
[ghc-base.git] / Control / Monad / ST / Strict.hs
diff --git a/Control/Monad/ST/Strict.hs b/Control/Monad/ST/Strict.hs
new file mode 100644 (file)
index 0000000..a899616
--- /dev/null
@@ -0,0 +1,20 @@
+-----------------------------------------------------------------------------
+-- |
+-- Module      :  Control.Monad.ST.Strict
+-- Copyright   :  (c) The University of Glasgow 2001
+-- License     :  BSD-style (see the file libraries/base/LICENSE)
+-- 
+-- Maintainer  :  libraries@haskell.org
+-- Stability   :  provisional
+-- Portability :  non-portable (requires universal quantification for runST)
+--
+-- The strict ST monad (re-export of "Control.Monad.ST")
+--
+-----------------------------------------------------------------------------
+
+module Control.Monad.ST.Strict (
+        module Control.Monad.ST
+  ) where
+
+import Prelude
+import Control.Monad.ST