a899616f55aa7b996fec7c25c79a2748e3d5c66b
[ghc-base.git] / Control / Monad / ST / Strict.hs
1 -----------------------------------------------------------------------------
2 -- |
3 -- Module      :  Control.Monad.ST.Strict
4 -- Copyright   :  (c) The University of Glasgow 2001
5 -- License     :  BSD-style (see the file libraries/base/LICENSE)
6 -- 
7 -- Maintainer  :  libraries@haskell.org
8 -- Stability   :  provisional
9 -- Portability :  non-portable (requires universal quantification for runST)
10 --
11 -- The strict ST monad (re-export of "Control.Monad.ST")
12 --
13 -----------------------------------------------------------------------------
14
15 module Control.Monad.ST.Strict (
16         module Control.Monad.ST
17   ) where
18
19 import Prelude
20 import Control.Monad.ST