| 9527 | auto operator+( T const &other ) const -> Parser { return operator|( other ); } |
| 9528 | |
| 9529 | auto getHelpColumns() const -> std::vector<HelpColumns> { |
| 9530 | std::vector<HelpColumns> cols; |
| 9531 | for (auto const &o : m_options) { |
| 9532 | auto childCols = o.getHelpColumns(); |
| 9533 | cols.insert( cols.end(), childCols.begin(), childCols.end() ); |
| 9534 | } |
| 9535 | return cols; |
| 9536 | } |
| 9537 | |
| 9538 | void writeToStream( std::ostream &os ) const { |
| 9539 | if (!m_exeName.name().empty()) { |
nothing calls this directly
no test coverage detected