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

Function printVector

Examples/NoModules/Chapter 20/Ex20_14B/Ex20_14B.cpp:44–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected