Mega Code Archive

 
Categories / C++ / Set Multiset
 

Instantiating STL set and multiset of Integers

#include <set> int main () {     using namespace std;     set <int> setIntegers;     multiset <int> msetIntegers;     return 0; }