| Copyright | (c) The University of Glasgow 2001 |
|---|---|
| License | BSD-style (see the file libraries/base/LICENSE) |
| Maintainer | [email protected] |
| Stability | experimental |
| Portability | non-portable (uses Data.Array.MArray) |
| Safe Haskell | None |
| Language | Haskell2010 |
Mutable boxed and unboxed arrays in the IO monad.
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.| MArray IOArray e IO | |
Defined in Data.Array.Base MethodsgetBounds :: Ix i => IOArray i e -> IO (i, i) Source getNumElements :: Ix i => IOArray i e -> IO Int newArray :: Ix i => (i, i) -> e -> IO (IOArray i e) Source newArray_ :: Ix i => (i, i) -> IO (IOArray i e) Source unsafeNewArray_ :: Ix i => (i, i) -> IO (IOArray i e) unsafeRead :: Ix i => IOArray i e -> Int -> IO e unsafeWrite :: Ix i => IOArray i e -> Int -> e -> IO () | |
| Eq (IOArray i e) | Since: base-4.1.0.0 |
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 of Ix)e: the element type of the array. Only certain element types are supported: see Data.Array.MArray for a list of instances.module Data.Array.MArray
| :: Handle | Handle to read from |
| -> IOUArray Int Word8 | Array in which to place the values |
| -> Int | Number of |
| -> IO Int | Returns: the number of |
Reads a number of Word8s from the specified Handle directly into an array.
© The University of Glasgow and others
Licensed under a BSD-style license (see top of the page).
https://downloads.haskell.org/~ghc/8.8.3/docs/html/libraries/array-0.5.4.0/Data-Array-IO.html