bit-vector: Simple bit vectors for Haskell

[ bit-vectors, bsd3, data, library ] [ Propose Tags ]

Operations for using a vector of Booleans as a bit vector. Intended more for pedagogical purposes than for serious applications


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0, 0.2.0
Dependencies base (>=4.4 && <5), vector (>=0.9) [details]
License BSD-3-Clause
Author Adam C. Foltzer
Maintainer acfoltzer@gmail.com
Category Data, Bit Vectors
Home page https://github.com/acfoltzer/bit-vector
Bug tracker https://github.com/acfoltzer/bit-vector/issues
Source repo head: git clone git://github.com/acfoltzer/bit-vector.git
Uploaded by AdamFoltzer at 2015-03-24T23:07:47Z
Distributions NixOS:0.2.0
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 2165 total (10 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2015-03-25 [all 1 reports]

Readme for bit-vector-0.2.0

[back to package description]

bit-vector

This is a dead-simple bit vector package for Haskell. It represents bit vectors as Data.Vector.Unboxed vectors of Bools, and provides Num and Bits instances that interpret the vectors as unsigned integers.