MCPcopy Create free account
hub / github.com/RenderKit/oidn / getHelpColumns

Method getHelpColumns

external/catch.hpp:9518–9525  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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()) {

Callers

nothing calls this directly

Calls 3

getHelpColumnsMethod · 0.45
endMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected