|
| Data.ArrayBZ.IO | | Portability | Hugs/GHC | | Stability | experimental | | Maintainer | Bulat Ziganshin <Bulat.Ziganshin@gmail.com> |
|
|
|
|
|
| Description |
| Mutable boxed and unboxed arrays in the IO monad.
|
|
| Synopsis |
|
|
|
|
| IO arrays with boxed elements
|
|
|
| Boxed mutable arrays in IO monad
|
|
| IO arrays with unboxed elements
|
|
|
| Unboxed mutable arrays in IO monad
|
|
|
| Casts an IOUArray with one element type into IOUArray with a different
element type (upper bound is recalculated).
|
|
| Overloaded mutable array interface
|
|
| module Data.ArrayBZ.MArray |
|
| Doing I/O with IOUArrays
|
|
|
| :: Handle | Handle to read from
| | -> IOUArray Int Word8 | Array in which to place the values
| | -> Int | Number of Word8s to read
| | -> IO Int | Returns: the number of Word8s actually
read, which might be smaller than the number requested
if the end of file was reached.
| | Reads a number of Word8s from the specified Handle directly
into an array.
|
|
|
|
|
|
| Produced by Haddock version 2.1.0 |