MCPcopy Create free account
hub / github.com/apache/trafficserver / getHelpColumns

Method getHelpColumns

lib/catch2/catch.hpp:9529–9536  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9527 auto operator+( T const &other ) const -> Parser { return operator|( other ); }
9528
9529 auto getHelpColumns() const -> std::vector<HelpColumns> {
9530 std::vector<HelpColumns> cols;
9531 for (auto const &o : m_options) {
9532 auto childCols = o.getHelpColumns();
9533 cols.insert( cols.end(), childCols.begin(), childCols.end() );
9534 }
9535 return cols;
9536 }
9537
9538 void writeToStream( std::ostream &os ) const {
9539 if (!m_exeName.name().empty()) {

Callers

nothing calls this directly

Calls 4

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

Tested by

no test coverage detected