| 6303 | auto operator+( T const &other ) const -> Parser { return operator|( other ); } |
| 6304 | |
| 6305 | auto getHelpColumns() const -> std::vector<HelpColumns> { |
| 6306 | std::vector<HelpColumns> cols; |
| 6307 | for (auto const &o : m_options) { |
| 6308 | auto childCols = o.getHelpColumns(); |
| 6309 | cols.insert( cols.end(), childCols.begin(), childCols.end() ); |
| 6310 | } |
| 6311 | return cols; |
| 6312 | } |
| 6313 | |
| 6314 | void writeToStream( std::ostream &os ) const { |
| 6315 | if (!m_exeName.name().empty()) { |
nothing calls this directly
no test coverage detected