| 391 | } |
| 392 | |
| 393 | path::iterator path::end() const { |
| 394 | iterator it{}; |
| 395 | it.__state_ = path::iterator::_AtEnd; |
| 396 | it.__path_ptr_ = this; |
| 397 | return it; |
| 398 | } |
| 399 | |
| 400 | path::iterator& path::iterator::__increment() { |
| 401 | PathParser PP(__path_ptr_->native(), __entry_, __state_); |
no outgoing calls