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

Function max_word_length

Examples/NoModules/Chapter 08/Ex8_17.cpp:87–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

show_wordsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected