Do all versions of GCC C++ standard library on 64-bit Ubuntu implement this bitset with bit packing?
I have a special bit data structure that I want to ensure is as space efficient as possible (up to padding for alignment). It needs to hold up to 2^20 bits. I'm considering implementing it manually on uint64 words with bit operations.