Compute the number of 1 bits in the bitset. */
| 174 | } |
| 175 | /** Compute the number of 1 bits in the bitset. */ |
| 176 | constexpr unsigned Count() const noexcept { return PopCount(m_val); } |
| 177 | /** Return the number of bits that this object holds. */ |
| 178 | static constexpr unsigned Size() noexcept { return MAX_SIZE; } |
| 179 | /** Check if all bits are 0. */ |