PrimitiveArray-0.4.0.1: PrimitiveArray.cabal
Name: PrimitiveArray
Version: 0.4.0.1
License: BSD3
License-file: LICENSE
Author: Christian Hoener zu Siederdissen
Maintainer: choener@tbi.univie.ac.at
Copyright: Christian Hoener zu Siederdissen, 2010-2012
Homepage: http://www.tbi.univie.ac.at/~choener/
Stability: Experimental
Category: Data
Build-type: Simple
Cabal-version: >=1.6
Synopsis:
Efficient multidimensional arrays
Description:
This library provides efficient multidimensional arrays.
.
In general all operations are (highly) unsafe, no
bounds-checking or other sanity-checking is performed.
Operations are aimed toward efficiency as much as possible.
Goals of the library are to have arrays according to three
ideas: immutable/mutable arrays, strict/lazy arrays,
zero-based/lower-bound arrays. Zero-based arrays save one
addition on each access if the lower bound or the array is
always zero.
.
We have forked two repa modules: Shape and Index.
Library
Exposed-modules:
Data.Array.Repa.Index
Data.Array.Repa.Shape
Data.ExtShape
Data.PrimitiveArray
Data.PrimitiveArray.Zero
Data.PrimitiveArray.Zero.Unboxed
-- Data.PrimitiveArray.UpperTriangular
-- Data.PrimitiveArray.UpperTriangular.Unboxed
-- Data.PrimitiveArray.FillTable
Build-depends:
base >= 4 && <5 ,
primitive >= 0.5.0.1 ,
vector >= 0.10.0.1
ghc-options:
-O2
-funbox-strict-fields
source-repository head
type: git
location: git://github.com/choener/PrimitiveArray