| 6525 | auto width() const -> size_t { return m_width; } |
| 6526 | auto begin() const -> iterator { return iterator(*this); } |
| 6527 | auto end() const -> iterator { return { *this, m_strings.size() }; } |
| 6528 | |
| 6529 | inline friend std::ostream& operator << (std::ostream& os, Column const& col) { |
| 6530 | bool first = true; |
no test coverage detected