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

Function printVector

Examples/Modules/Chapter 20/Ex20_10/Ex20_10.cpp:42–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40}
41
42void printVector(std::string_view message, const std::vector<int>& numbers)
43{
44 std::cout << message << ": ";
45 for (int number : numbers) std::cout << number << ' ';
46 std::cout << std::endl;
47}

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected