| |||||||||||||||
| |||||||||||||||
Contents | |||||||||||||||
Description | |||||||||||||||
Mutable boxed and unboxed arrays in the IO monad. | |||||||||||||||
Synopsis | |||||||||||||||
| |||||||||||||||
IO arrays with boxed elements | |||||||||||||||
data IOArray i e | |||||||||||||||
| |||||||||||||||
IO arrays with unboxed elements | |||||||||||||||
data IOUArray i e | |||||||||||||||
castIOUArray :: IOUArray ix a -> IO (IOUArray ix b) | |||||||||||||||
Casts an IOUArray with one element type into one with a different element type. All the elements of the resulting array are undefined (unless you know what you're doing...). | |||||||||||||||
Overloaded mutable array interface | |||||||||||||||
module Data.Array.MArray | |||||||||||||||
Doing I/O with IOUArrays | |||||||||||||||
hGetArray | |||||||||||||||
| |||||||||||||||
hPutArray | |||||||||||||||
| |||||||||||||||
Produced by Haddock version 0.4 |