How do I change the value of a dynamic_bitset?

Posted by R S on Stack Overflow See other posts from Stack Overflow or by R S
Published on 2010-03-26T20:59:32Z Indexed on 2010/03/26 21:03 UTC
Read the original article Hit count: 278

Filed under:
|
|
|

I am using C++ boost's dynamic_bitset.

I have already allocated a variable and I just want to change its value - to construct it anew from an 'unsigned long' like from the constructor, but I don't want to allocate the memory again or to create a temporary variable.

What can I do?

© Stack Overflow or respective owner

Related posts about boost

Related posts about c++