| 9546 | auto operator+( T const &other ) const -> Parser { return operator|( other ); } |
| 9547 | |
| 9548 | auto getHelpColumns() const -> std::vector<HelpColumns> { |
| 9549 | std::vector<HelpColumns> cols; |
| 9550 | for (auto const &o : m_options) { |
| 9551 | auto childCols = o.getHelpColumns(); |
| 9552 | cols.insert( cols.end(), childCols.begin(), childCols.end() ); |
| 9553 | } |
| 9554 | return cols; |
| 9555 | } |
| 9556 | |
| 9557 | void writeToStream( std::ostream &os ) const { |
| 9558 | if (!m_exeName.name().empty()) { |
nothing calls this directly
no test coverage detected