Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
42
void 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
main
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected