d19cf6a686095823bba00cc156705ee8f41770b5
[haskell-directory.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 arrays.
12 --
13 -----------------------------------------------------------------------------
14
15 module Data.Array.Unboxed (
16    -- * Arrays with unboxed elements
17    UArray,
18
19    -- * The overloaded immutable array interface
20    module Data.Array.IArray,
21  ) where
22
23 import Prelude
24
25 import Data.Array.IArray
26 import Data.Array.Base