Return a dummy object to compare Iterators with. */
| 397 | Iterator constexpr begin() const noexcept { return Iterator(m_val); } |
| 398 | /** Return a dummy object to compare Iterators with. */ |
| 399 | IteratorEnd constexpr end() const noexcept { return IteratorEnd(); } |
| 400 | /** Find the first element (requires Any()). */ |
| 401 | unsigned constexpr First() const noexcept |
| 402 | { |
nothing calls this directly
no test coverage detected