array-0.5.0.0: Mutable and immutable arrays

Copyright(c) The University of Glasgow 2001
LicenseBSD-style (see the file libraries/base/LICENSE)
Maintainerlibraries@haskell.org
Stabilityexperimental
Portabilitynon-portable (uses Data.Array.MArray)
Safe HaskellNone
LanguageHaskell2010

Data.Array.IO

Description

Mutable boxed and unboxed arrays in the IO monad.

Synopsis

IO arrays with boxed elements

data IOArray i e :: * -> * -> *

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

Eq (IOArray i e)
Typeable (* -> * -> *) IOArray

IO arrays with unboxed elements

data IOUArray i e Source

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.

Instances

Overloaded mutable array interface

module Data.Array.MArray

Doing I/O with IOUArrays

hGetArray Source

Arguments

:: Handle

Handle to read from

-> IOUArray Int Word8

Array in which to place the values

-> Int

Number of Word8 s to read

-> IO Int

Returns: the number of Word8 s actually read, which might be smaller than the number requested if the end of file was reached.

Reads a number of Word8 s from the specified Handle directly into an array.

hPutArray Source

Arguments

:: Handle

Handle to write to

-> IOUArray Int Word8

Array to write from

-> Int

Number of Word8 s to write

-> IO ()

Writes an array of Word8 to the specified Handle .

AltStyle によって変換されたページ (->オリジナル) /