Personal tools

Storable Vector

From HaskellWiki

(Difference between revisions)
Jump to: navigation, search
(hyperlinks to alternative packages, CArray)
Current revision (19:08, 27 April 2012) (edit) (undo)
(Links: a spurious slash)
 
(5 intermediate revisions not shown.)
Line 4: Line 4:
== Links ==
== Links ==
-
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/storablevector Hackage]
+
{{PackageInfoBox|name=storablevector|darcs-code=storablevector/}}
-
* [http://code.haskell.org/storablevector Darcs repository]
+
 
 +
* See also {{HackagePackage|id=storablevector-streamfusion}} for fusion with stream-fusion list operations
== See also ==
== See also ==
-
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/bytestring ByteString]
+
* {{HackagePackage|id=bytestring}}
-
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/uvector uvector]
+
* {{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])
-
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/vector vector]
+
* {{HackagePackage|id=vector}}
-
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/carray carray]
+
* {{HackagePackage|id=carray}}
-
* http://www.haskell.org/pipermail/haskell-cafe/2008-July/045229.html
+
* Haskell-cafe on [http://www.haskell.org/pipermail/haskell-cafe/2008-July/045229.html vector vs uvector]
 +
* Haskell-cafe on [http://www.haskell.org/pipermail/haskell-cafe/2009-March/057240.html bytestring vs. uvector]
[[Category:Libraries]]
[[Category:Libraries]]

Current revision

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

1 Links

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

2 See also