Boost.Dynamic_Bitset is a C++ library that is nearly identical to the std::bitset class, the difference being that the size of the dynamic_bitset (the number of bits) is specified at run-time during the construction of a dynamic_bitset object, whereas the size of a std::bitset is specified at compile-time through an integer template parameter.
Boost.Dynamic_Bitset is a C++ library that is nearly identical to the std::bitset
class, the difference being that the size of the dynamic_bitset
(the number of bits) is specified at run-time during the construction of a dynamic_bitset
object, whereas the size of a std::bitset
is specified at compile-time through an integer template parameter.