vector-0.4: Efficient ArraysSource codeContentsIndex
Data.Vector.Mutable
Portabilitynon-portable
Stabilityexperimental
MaintainerRoman Leshchinskiy <rl@cse.unsw.edu.au>
Description
Mutable boxed vectors.
Synopsis
data MVector m a = MVector !Int !Int !(MutableArray m a)
type IOVector = MVector IO
type STVector s = MVector (ST s)
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)
show/hide Instances
type IOVector = MVector IOSource
type STVector s = MVector (ST s)Source
Produced by Haddock version 2.4.2