MCPcopy Create free account
hub / github.com/Apress/beginning-cpp20 / max_word_length

Function max_word_length

Examples/Modules/Chapter 08/Ex8_17.cpp:88–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86}
87
88size_t max_word_length(const Words& words)
89{
90 size_t max {};
91 for (auto& pword : words)
92 if (max < pword->length()) max = pword->length();
93 return max;
94}
95
96void show_words(const Words& words)
97{

Callers 1

show_wordsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected