Sets all of the bits in the bitset to zero.
| 204 | |
| 205 | /// Sets all of the bits in the bitset to zero. |
| 206 | void reset(command_queue &queue) |
| 207 | { |
| 208 | fill(m_bits.begin(), m_bits.end(), block_type(0), queue); |
| 209 | } |
| 210 | |
| 211 | /// Sets the bit at position \p n to zero. |
| 212 | void reset(size_type n, command_queue &queue) |