| 9516 | auto operator+( T const &other ) const -> Parser { return operator|( other ); } |
| 9517 | |
| 9518 | auto getHelpColumns() const -> std::vector<HelpColumns> { |
| 9519 | std::vector<HelpColumns> cols; |
| 9520 | for (auto const &o : m_options) { |
| 9521 | auto childCols = o.getHelpColumns(); |
| 9522 | cols.insert( cols.end(), childCols.begin(), childCols.end() ); |
| 9523 | } |
| 9524 | return cols; |
| 9525 | } |
| 9526 | |
| 9527 | void writeToStream( std::ostream &os ) const { |
| 9528 | if (!m_exeName.name().empty()) { |
nothing calls this directly
no test coverage detected