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

Function printVector

Exercises/Modules/Chapter 20/Soln20_07/Soln20_07.cpp:11–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9
10template <typename Auto>
11void printVector(std::string_view message, Auto& numbers)
12{
13 std::cout << message << ": ";
14 for (int number : numbers) std::cout << number << ' ';
15 std::cout << std::endl;
16}
17
18int main()
19{

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected