[project @ 2002-04-24 16:31:37 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/core/LICENSE)
6 -- 
7 -- Maintainer  :  libraries@haskell.org
8 -- Stability   :  experimental
9 -- Portability :  non-portable
10 --
11 -- $Id: Unboxed.hs,v 1.2 2002/04/24 16:31:43 simonmar Exp $
12 --
13 -- Unboxed immutable array type.
14 --
15 -----------------------------------------------------------------------------
16
17 module Data.Array.Unboxed (
18    module Data.Array.IArray,
19    UArray,
20  ) where
21
22 import Prelude
23
24 import Data.Array.IArray
25 import Data.Array.Base