PrimitiveArray-0.2.2.0: Efficient multidimensional arrays

Safe HaskellSafe-Infered

Data.PrimitiveArray.Unboxed.VectorZero

Description

Strict, unboxed arrays of primitive type. Uses unboxed vectors internally to provide tuple instances.

Synopsis

Documentation

data MArr0 s sh elm Source

Monadic arrays of primitive type.

Constructors

MArr0 !sh !(MVector s elm) 

Instances

(Shape sh, ExtShape sh, Unbox elm) => MPrimArrayOps MArr0 sh elm 

data Arr0 sh elm Source

Immutable arrays of primitive type.

Constructors

Arr0 !sh !(Vector elm) 

Instances

(Shape sh, ExtShape sh, Unbox elm) => PrimArrayOps Arr0 sh elm