📜  c++ set insert 的返回值 - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:47.747000             🧑  作者: Mango

代码示例1
set st;
auto p = st.insert(2);
// p.first - iterator to the inserted element
// p.second - true if 2 don't exists in the set otherwise false