boost::dynamic_bitset::reset
If len is zero, does nothing. Otherwise, resets all the bits in this bitset which have a position in [pos, pos + len ‐ 1].
Synopsis
Declared in <boost/dynamic_bitset/dynamic_bitset.hpp>
dynamic_bitset&
reset(
size_type pos,
size_type len);
Parameters
| Name | Description |
|---|---|
pos |
The position of the lowest bit to reset. |
len |
The number of bits to reset. |
Preconditions
-
pos + len <= this‐>size().
Created with MrDocs