Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Boost dynamic_bitset - put an integer value into a range of bits

I have a 7-byte/56-bit bitset that upon construction sets the first bit to one:

boost::dynamic_bitset<> b(56, 1);

After construction, I'd like to place an integer value (say 2019) into bits 4 through 15. I'm curious if there is a simple way within boost to do this without bitwise operations? Basically, I want to set a range of bits to an integer value that I know is small enough to fit into those bits. Thanks for any advice.

like image 488
01100110 Avatar asked Dec 30 '25 01:12

01100110


1 Answers

The boost::dynamic_bitset<> offers much less functionality. I think the only possibility is to use an ordinary loop:

template <typename Bitset>
void set_in_range(Bitset& b, unsigned value, int from, int to)
{
  for (int i = from; i < to; ++i, value >>= 1)
    b[i] = (value & 1);
}

boost::dynamic_bitset<> b(56, 1);
set_in_range(b, 2019, 4, 15);
like image 66
ipc Avatar answered Dec 31 '25 15:12

ipc



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!