vector-0.4: Efficient ArraysSource codeContentsIndex
Data.Vector.Primitive.Mutable
Portabilitynon-portable
Stabilityexperimental
MaintainerRoman Leshchinskiy <rl@cse.unsw.edu.au>
Description
Mutable primitive vectors.
Synopsis
data MVector m a = MVector !Int !Int !(MutableByteArray m)
type IOVector = MVector IO
type STVector s = MVector (ST s)
Documentation
data MVector m a Source
Mutable unboxed vectors. They live in the ST monad.
Constructors
MVector !Int !Int !(MutableByteArray m)
show/hide Instances
Prim a => MVectorPure (MVector m) a
(Prim a, PrimMonad m) => MVector (MVector m) m a
type IOVector = MVector IOSource
type STVector s = MVector (ST s)Source
Produced by Haddock version 2.4.2