| 5489 | return m_iterators == other.m_iterators; |
| 5490 | } |
| 5491 | auto operator !=( iterator const& other ) const -> bool { |
| 5492 | return m_iterators != other.m_iterators; |
| 5493 | } |
| 5494 | auto operator *() const -> std::string { |
| 5495 | std::string row, padding; |
| 5496 |
nothing calls this directly
no outgoing calls
no test coverage detected