1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
// unordered_multimap limits
#include <iostream>
#include <unordered_map>
int main ()
{
std::unordered_multimap<int,int> mymap;
std::cout << "max_size = " << mymap.max_size() << std::endl;
std::cout << "max_bucket_count = " << mymap.max_bucket_count() << std::endl;
std::cout << "max_load_factor = " << mymap.max_load_factor() << std::endl;
return 0;
}
| |