What's the best way to store a bit array in C++ (no Boost, just standard containers), representing, for example, a volume allocation bitmap?
I thought std::vector<bool>
was a great idea, but apparently it's Evil and deprecated, so is there a better choice?
Also:
If I have a byte array in memory, how would I go about copying them to the recommended container?
(I'm having trouble figuring this out for vector<bool>
.)
Just posting this 6 years later for posterity: like one of the commenters said, I came to the conclusion that it's perfectly fine to use
std::vector<bool>
as its own specialized type. The only thing you need to be careful of is not to treat it like a standardbool
container, since it isn't.