I have a nested map containing a std::set<> STL, Is there any way to predefine the max size of set in c++?
Following is my DS:
std::map<Key, std::map<classObj, std::set<classObj> > >
Can I define max size of std::set without defining the size of any of the map present above in the declaration of this DS?