| 5420 | |
| 5421 | auto width() const -> size_t { return m_width; } |
| 5422 | auto begin() const -> iterator { return iterator( *this ); } |
| 5423 | auto end() const -> iterator { return { *this, m_strings.size() }; } |
| 5424 | |
| 5425 | inline friend std::ostream& operator << ( std::ostream& os, Column const& col ) { |
no test coverage detected