| 5533 | return *this; |
| 5534 | } |
| 5535 | auto operator + ( Column const& col ) -> Columns { |
| 5536 | Columns combined = *this; |
| 5537 | combined += col; |
| 5538 | return combined; |
| 5539 | } |
| 5540 | |
| 5541 | inline friend std::ostream& operator << ( std::ostream& os, Columns const& cols ) { |
| 5542 |
nothing calls this directly
no outgoing calls
no test coverage detected