[project @ 2002-08-16 11:38:04 by simonmar]
[ghc-base.git] / Data / Array / IArray.hs
index 73c65c1..5c7c57f 100644 (file)
@@ -21,6 +21,9 @@ module Data.Array.IArray (
     -- * Class of array types with immutable bounds
     HasBounds,  -- :: (* -> * -> *) -> class
 
+    -- * Ordinary boxed/lazy arrays
+    Array,    
+
     -- * The @Ix@ class and operations
     module Data.Ix,
 
@@ -50,6 +53,7 @@ module Data.Array.IArray (
 import Prelude
 
 import Data.Ix
+import Data.Array (Array)
 #ifdef __HUGS__
 import Hugs.Array.Base
 #else