vector-0.4.2: Efficient Arrays

Portabilitynon-portable
Stabilityexperimental
MaintainerRoman Leshchinskiy <[email protected]>

Data.Vector.Mutable

Description

Mutable boxed vectors.

Synopsis

Documentation

data MVector m a Source

Mutable boxed vectors keyed on the monad they live in (IO or ST s).

Constructors

MVector !Int !Int !(MutableArray m a) 

Instances