Storable Vector: Difference between revisions
(Added links) |
(stream fusion) |
||
Line 6: | Line 6: | ||
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/storablevector Hackage] | * [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/storablevector Hackage] | ||
* [http://code.haskell.org/storablevector Darcs repository] | * [http://code.haskell.org/storablevector Darcs repository] | ||
* [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/storablevector-streamfusion Fusion with stream-fusion list operations] | |||
== See also == | == See also == |
Revision as of 21:23, 24 April 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
- ByteString
- uvector (which uses stream fusion as described in Stream Fusion, From Lists to Streams to Nothing at All)
- vector
- carray
- Haskell-cafe: vector vs uvector
- Haskell-cafe: bytestring vs. uvector