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

Function main

cpp_14/001_stl_cbegin.cpp:6–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4using namespace std;
5
6int main ()
7{
8 set<string> myset= {"Java", "C++","SQL"};
9
10 // 显示内容:
11 for (auto it = myset.cbegin(); it != myset.cend(); ++it)
12 cout <<*it << '\n';
13
14 return 0;
15}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected