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

Function printVector

Examples/Modules/Chapter 20/Ex20_14A/Ex20_14A.cpp:35–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33}
34
35void printVector(std::string_view message, const std::vector<int>& numbers)
36{
37 std::cout << message << ": ";
38 for (int number : numbers) std::cout << number << ' ';
39 std::cout << std::endl;
40}

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected