[project @ 2003-08-30 23:01:48 by ross]
[haskell-directory.git] / Data / Array / ST.hs
index 0db90e1..507ba60 100644 (file)
@@ -8,7 +8,7 @@
 -- Stability   :  experimental
 -- Portability :  non-portable
 --
--- Mutable boxed and unboxed arrays in the 'ST' monad.
+-- Mutable boxed and unboxed arrays in the 'Control.Monad.ST.ST' monad.
 --
 -----------------------------------------------------------------------------
 
@@ -28,13 +28,12 @@ module Data.Array.ST (
 import Prelude
 
 import Data.Array.MArray
-import Data.Array.Base hiding (MArray(..))
+import Data.Array.Base ( STUArray, castSTUArray )
 
 #ifdef __HUGS__
-import Hugs.ST
+import Hugs.ST         ( STArray )
 #endif
 
 #ifdef __GLASGOW_HASKELL__
-import GHC.Arr
-import GHC.ST
+import GHC.Arr         ( STArray )
 #endif