| 7414 | auto operator+( T const &other ) const -> Parser { return operator|( other ); } |
| 7415 | |
| 7416 | auto getHelpColumns() const -> std::vector<HelpColumns> { |
| 7417 | std::vector<HelpColumns> cols; |
| 7418 | for (auto const &o : m_options) { |
| 7419 | auto childCols = o.getHelpColumns(); |
| 7420 | cols.insert( cols.end(), childCols.begin(), childCols.end() ); |
| 7421 | } |
| 7422 | return cols; |
| 7423 | } |
| 7424 | |
| 7425 | void writeToStream( std::ostream &os ) const { |
| 7426 | if (!m_exeName.name().empty()) { |
nothing calls this directly
no test coverage detected