* Sets the vector to all selected. */
| 179 | * Sets the vector to all selected. |
| 180 | */ |
| 181 | void setAll() { |
| 182 | bits::fillBits(bits_.data(), 0, size_, true); |
| 183 | begin_ = 0; |
| 184 | end_ = size_; |
| 185 | allSelected_ = true; |
| 186 | } |
| 187 | |
| 188 | void setFromBits(const uint64_t* bits, int32_t size) { |
| 189 | auto numWords = bits::nwords(size); |