| 1080 | path const& dereference() const { return m_element; } |
| 1081 | |
| 1082 | bool equal(path_iterator const& rhs) const noexcept |
| 1083 | { |
| 1084 | return m_path_ptr == rhs.m_path_ptr && m_pos == rhs.m_pos; |
| 1085 | } |
| 1086 | |
| 1087 | void increment(); |
| 1088 | void decrement(); |
nothing calls this directly
no outgoing calls
no test coverage detected