The bitvec package
Another bit-array library for Haskell. This one defines a Bit type (which is an instance of all the expected classes, including numeric ones) and makes that type an instance of `Data.Vector.Unboxed. Unbox`, so we get a lot of nice APIs for free. Bool is already an unboxable type, but the current unboxed Vector implementation packs each bit as a byte. This one packs 8 bits per byte, as expected (UArray from the array package also uses one bit per Bool).
In addition to the Vector interface, there are several high-level operations and some low-level ones suitable for building new bulk operations by viewing the bit-vector as a word vector.
Properties
| Versions | 0.1, 0.1.0.1 |
|---|---|
| Dependencies | base (≥3 & <5), primitive, vector (≥0.8) |
| License | PublicDomain |
| Author | James Cook <mokus@deepbondi.net> |
| Maintainer | James Cook <mokus@deepbondi.net> |
| Stability | experimental |
| Category | Data, Bit Vectors |
| Home page | https://github.com/mokus0/bitvec |
| Source repository | git clone git://github.com/mokus0/bitvec.git |
| Upload date | Fri Jan 18 18:53:34 UTC 2013 |
| Uploaded by | JamesCook |
| Built on | ghc-7.6 |
Modules
- Data
- Data.Bit
- Vector
- Unboxed
Downloads
- bitvec-0.1.0.1.tar.gz (Cabal source package)
- package description (included in the package)