MCPcopy Create free account
hub / github.com/changkun/modern-cpp-tutorial / magic

Function magic

code/2/2.6.cpp:39–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37// sizeof...
38template<typename... Args>
39void magic(Args... args) {
40 std::cout << sizeof...(args) << std::endl;
41}
42
43
44// 1. 递归解参数包

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected