boost::dynamic_bitset::append
Appends the bits in block to this bitset (appends to the most significant end). This increases the size of the bitset by bits_per_block. Let s be the old size of the bitset, then for i in the range [0, bits_per_block), the bit at position s + i is set to ( block >> i ) & 1.
Synopsis
Declared in <boost/dynamic_bitset/dynamic_bitset.hpp>
void
append(Block block);
Parameters
| Name | Description |
|---|---|
block |
The block to append. |
Created with MrDocs