bit vectors in c++

Here is a very simple statically sized bit vector implementation. It requires C++11 to function since it relies on the <cstdint> header, but this header is fairly commonly found since it’s based on a C99 feature. In a pinch you can use the C <stdint.h> header and simply use types in the global namespace instead. Note: This was typed on-the-fly … Read more