Storable Vector: Difference between revisions

From HaskellWiki
(Category:Libraries)
(hyperlinks to alternative packages, CArray)
Line 9: Line 9:
== See also ==
== See also ==


* ByteString
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/bytestring ByteString]
* uvector
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/uvector uvector]
* vector
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/vector vector]
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/carray carray]
* http://www.haskell.org/pipermail/haskell-cafe/2008-July/045229.html
* http://www.haskell.org/pipermail/haskell-cafe/2008-July/045229.html


[[Category:Libraries]]
[[Category:Libraries]]

Revision as of 00:02, 23 February 2009

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

Links

See also