| 6187 | auto operator+( T const &other ) const -> Parser { return operator|( other ); } |
| 6188 | |
| 6189 | auto getHelpColumns() const -> std::vector<HelpColumns> { |
| 6190 | std::vector<HelpColumns> cols; |
| 6191 | for (auto const &o : m_options) { |
| 6192 | auto childCols = o.getHelpColumns(); |
| 6193 | cols.insert( cols.end(), childCols.begin(), childCols.end() ); |
| 6194 | } |
| 6195 | return cols; |
| 6196 | } |
| 6197 | |
| 6198 | void writeToStream( std::ostream &os ) const { |
| 6199 | if (!m_exeName.name().empty()) { |
nothing calls this directly
no test coverage detected