array-0.2.0.0: Mutable and immutable arraysSource codeContentsIndex
Data.Array.ST
Portabilitynon-portable (uses Data.Array.MArray)
Stabilityexperimental
Maintainerlibraries@haskell.org
Contents
Boxed arrays
Unboxed arrays
Overloaded mutable array interface
Description
Mutable boxed and unboxed arrays in the ST monad.
Synopsis
STArray (STArray)
runSTArray :: Ix i => (forall s. ST s (STArray s i e)) -> Array i e
data STUArray s i e
runSTUArray :: Ix i => (forall s. ST s (STUArray s i e)) -> UArray i e
castSTUArray :: STUArray s ix a -> ST s (STUArray s ix b)
module Data.Array.MArray
Boxed arrays
STArray (STArray)
runSTArray :: Ix i => (forall s. ST s (STArray s i e)) -> Array i eSource
A safe way to create and work with a mutable array before returning an immutable array for later perusal. This function avoids copying the array before returning it - it uses unsafeFreeze internally, but this wrapper is a safe interface to that function.
Unboxed arrays
data STUArray s i e Source

A mutable array with unboxed elements, that can be manipulated in the ST monad. The type arguments are as follows:

  • s: the state variable argument for the ST type
  • 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.

An STUArray will generally be more efficient (in terms of both time and space) than the equivalent boxed version (STArray) with the same element type. However, STUArray is strict in its elements - so don't use STUArray if you require the non-strictness that STArray provides.

show/hide Instances
runSTUArray :: Ix i => (forall s. ST s (STUArray s i e)) -> UArray i eSource
A safe way to create and work with an unboxed mutable array before returning an immutable array for later perusal. This function avoids copying the array before returning it - it uses unsafeFreeze internally, but this wrapper is a safe interface to that function.
castSTUArray :: STUArray s ix a -> ST s (STUArray s ix b)Source
Casts an STUArray 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
Produced by Haddock version 2.4.2