d746f6d56f160d1b919923349ebdc69194bf25f9
[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/core/LICENSE)
6 -- 
7 -- Maintainer  :  libraries@haskell.org
8 -- Stability   :  provisional
9 -- Portability :  non-portable (requires universal quantification for runST)
10 --
11 -- $Id: Strict.hs,v 1.2 2001/07/03 11:37:49 simonmar Exp $
12 --
13 -- The strict ST monad (identical to Control.Monad.ST)
14 --
15 -----------------------------------------------------------------------------
16
17 module Control.Monad.ST.Strict (
18         module Control.Monad.ST
19   ) where
20
21 import Prelude
22 import Control.Monad.ST