Return an object that iterates over all 1 bits (++ and * only allowed when != end()). */
| 182 | constexpr bool Any() const noexcept { return !None(); } |
| 183 | /** Return an object that iterates over all 1 bits (++ and * only allowed when != end()). */ |
| 184 | constexpr Iterator begin() const noexcept { return Iterator(m_val); } |
| 185 | /** Return a dummy object to compare Iterators with. */ |
| 186 | constexpr IteratorEnd end() const noexcept { return IteratorEnd(); } |
| 187 | /** Find the first element (requires Any()). */ |
no test coverage detected