summaryrefslogtreecommitdiff
path: root/libraries/base/Data/Array/Unboxed.hs
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/base/Data/Array/Unboxed.hs')
-rw-r--r--libraries/base/Data/Array/Unboxed.hs25
1 files changed, 25 insertions, 0 deletions
diff --git a/libraries/base/Data/Array/Unboxed.hs b/libraries/base/Data/Array/Unboxed.hs
new file mode 100644
index 0000000000..b4a0ecfc02
--- /dev/null
+++ b/libraries/base/Data/Array/Unboxed.hs
@@ -0,0 +1,25 @@
+-----------------------------------------------------------------------------
+--
+-- Module : Data.Array.Unboxed
+-- Copyright : (c) The University of Glasgow 2001
+-- License : BSD-style (see the file libraries/core/LICENSE)
+--
+-- Maintainer : libraries@haskell.org
+-- Stability : experimental
+-- Portability : non-portable
+--
+-- $Id: Unboxed.hs,v 1.1 2001/06/28 14:15:02 simonmar Exp $
+--
+-- Unboxed immutable array type.
+--
+-----------------------------------------------------------------------------
+
+module Data.Array.Unboxed (
+ module Data.Array.IArray,
+ UArray,
+ ) where
+
+import Prelude
+
+import Data.Array.IArray
+import Data.Array.Base