Documentation
newtype IOArray i e Source #
An IOArray
is a mutable, boxed, non-strict array in the IO
monad.
The type arguments are as follows:
i
: the index type of the array (should be an instance of Ix
)e
: the element type of the array.
Instances
Instances details