Difference between revisions of "Storable Vector"

From HaskellWiki
Jump to navigation Jump to search
(use HackagePackage and PackageInfo templates)
(→‎See also: use HackagePackage template)
Line 10: Line 10:
 
== See also ==
 
== See also ==
   
  +
* {{HackagePackage|id=bytestring}}
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/bytestring ByteString]
 
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/uvector uvector] (which uses stream fusion as described in [http://www.cse.unsw.edu.au/~dons/papers/CLS07.html Stream Fusion, From Lists to Streams to Nothing at All])
+
* {{HackagePackage|id=uvector}} (which uses stream fusion as described in [http://www.cse.unsw.edu.au/~dons/papers/CLS07.html Stream Fusion, From Lists to Streams to Nothing at All])
  +
* {{HackagePackage|id=vector}}
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/vector vector]
 
  +
* {{HackagePackage|id=carray}}
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/carray carray]
 
* [http://www.haskell.org/pipermail/haskell-cafe/2008-July/045229.html Haskell-cafe: vector vs uvector]
+
* Haskell-cafe on [http://www.haskell.org/pipermail/haskell-cafe/2008-July/045229.html vector vs uvector]
* [http://www.haskell.org/pipermail/haskell-cafe/2009-March/057240.html Haskell-cafe: bytestring vs. uvector]
+
* Haskell-cafe on [http://www.haskell.org/pipermail/haskell-cafe/2009-March/057240.html bytestring vs. uvector]
   
 
[[Category:Libraries]]
 
[[Category:Libraries]]

Revision as of 19:07, 27 April 2012

Fast, packed, strict storable arrays with a list interface. This is much like bytestring but can be used for every Storable type.

Links

Package storablevector
Hackage http://hackage.haskell.org/package/storablevector
Repository darcs get http://code.haskell.org//storablevector

See also