Return a dummy object to compare Iterators with. */
| 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()). */ |
| 188 | constexpr unsigned First() const noexcept |
| 189 | { |
no test coverage detected