MCPcopy Create free account
hub / github.com/WasmEdge/WasmEdge / getHelpColumns

Method getHelpColumns

test/expected/catch.hpp:9461–9468  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9459 auto operator+( T const &other ) const -> Parser { return operator|( other ); }
9460
9461 auto getHelpColumns() const -> std::vector<HelpColumns> {
9462 std::vector<HelpColumns> cols;
9463 for (auto const &o : m_options) {
9464 auto childCols = o.getHelpColumns();
9465 cols.insert( cols.end(), childCols.begin(), childCols.end() );
9466 }
9467 return cols;
9468 }
9469
9470 void writeToStream( std::ostream &os ) const {
9471 if (!m_exeName.name().empty()) {

Callers

nothing calls this directly

Calls 4

insertMethod · 0.80
getHelpColumnsMethod · 0.45
endMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected