Copyright | (c) The University of Glasgow 2001 |
---|---|
License | BSD-style (see the file libraries/base/LICENSE) |
Maintainer | libraries@haskell.org |
Stability | experimental |
Portability | non-portable (uses Data.Array.MArray) |
Safe Haskell | None |
Language | Haskell2010 |
Mutable boxed and unboxed arrays in the IO monad.
IO
arrays with boxed elements
data IOArray i e :: TYPE Lifted -> TYPE Lifted -> TYPE Lifted Source
IO
arrays with unboxed elements
Mutable, unboxed, strict arrays in the IO
monad. The type
arguments are as follows:
i
: the index type of the array (should be an instance ofIx
)e
: the element type of the array. Only certain element types are supported: see Data.Array.MArray for a list of instances.
Overloaded mutable array interface
module Data.Array.MArray