| 6640 | return *this; |
| 6641 | } |
| 6642 | auto operator + (Column const& col) -> Columns { |
| 6643 | Columns combined = *this; |
| 6644 | combined += col; |
| 6645 | return combined; |
| 6646 | } |
| 6647 | |
| 6648 | inline friend std::ostream& operator << (std::ostream& os, Columns const& cols) { |
| 6649 |
nothing calls this directly
no outgoing calls
no test coverage detected