Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
10
template <typename Auto>
11
void 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
18
int main()
19
{
Callers
1
main
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected