| 5529 | auto end() const -> iterator { return { *this, iterator::EndTag() }; } |
| 5530 | |
| 5531 | auto operator += ( Column const& col ) -> Columns& { |
| 5532 | m_columns.push_back( col ); |
| 5533 | return *this; |
| 5534 | } |
| 5535 | auto operator + ( Column const& col ) -> Columns { |
| 5536 | Columns combined = *this; |
| 5537 | combined += col; |
nothing calls this directly
no outgoing calls
no test coverage detected