[project @ 2002-05-09 13:16:29 by simonmar]
[ghc-base.git] / Data / Array / Unboxed.hs
1 -----------------------------------------------------------------------------
2 -- |
3 -- Module      :  Data.Array.Unboxed
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   :  experimental
9 -- Portability :  non-portable
10 --
11 -- Unboxed immutable array type.
12 --
13 -----------------------------------------------------------------------------
14
15 module Data.Array.Unboxed (
16    module Data.Array.IArray,
17    UArray,
18  ) where
19
20 import Prelude
21
22 import Data.Array.IArray
23 import Data.Array.Base