| 161 | |
| 162 | Q_REQUIRED_RESULT iterator begin() const noexcept { return iterator{*this}; } |
| 163 | Q_REQUIRED_RESULT iterator cbegin() const noexcept { return begin(); } |
| 164 | template<bool = std::is_same<iterator, sentinel>::value> // ODR protection |
| 165 | Q_REQUIRED_RESULT constexpr sentinel end() const noexcept |
| 166 | { |
no outgoing calls
no test coverage detected