| 174 | return const_iterator(this, _impl.begin); |
| 175 | } |
| 176 | iterator end() { |
| 177 | return iterator(this, _impl.end); |
| 178 | } |
| 179 | const_iterator end() const { |
| 180 | return const_iterator(this, _impl.end); |
| 181 | } |
nothing calls this directly
no test coverage detected