MCPcopy Create free account
hub / github.com/0voice/cpp_new_features / main

Function main

cpp_17/012_stl_empty.cpp:20–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18}
19
20int main()
21{
22 std::vector<int> c = { 1, 2, 3 };
23 print(c);
24 c.clear();
25 print(c);
26
27 int array[] = { 4, 5, 6 };
28 print(array);
29
30 auto il = { 7, 8, 9 };
31 print(il);
32}

Callers

nothing calls this directly

Calls 1

printFunction · 0.70

Tested by

no test coverage detected