| Portability | non-portable (uses Data.Array.Base) |
|---|---|
| Stability | experimental |
| Maintainer | libraries@haskell.org |
Data.Array.IO.Internals
Description
Mutable boxed and unboxed arrays in the IO monad.
Documentation
newtype IOArray i e
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.
Instances