Difference between revisions of "Storable Vector"

From HaskellWiki
Jump to navigation Jump to search
(Category:Libraries)
(hyperlinks to alternative packages, CArray)
Line 9: Line 9:
 
== See also ==
 
== See also ==
   
  +
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/bytestring ByteString]
* ByteString
 
  +
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/uvector uvector]
* uvector
 
  +
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/vector 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
   

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