Releases: bkille/BitLib
Releases · bkille/BitLib
v0.3.1
v0.2.0
- Project file structure has been reorganized
- libsimdpp has been removed
- C++17 now supported
- Overloads for input, forward, and bidirectional iterators has been removed. Until we have non contiguous memory containers, all iterator overloads will be random-access iterators only.
First bitlib release (beta)
This is the first release of the BitLib library. It includes the following:
Container(s)
- A
bit_vector<WordType>
, which is a wrapper aroundstd::vector<WordType>
but has a similar interface tostd::vector<bool>
in the sense that from the outside perspective, it is a container of bits.
Algorithms
Iterator(s)
bit_iterator<Iterator>
which can be constructed from any iterator/pointer.