public member function
<unordered_map>

std::unordered_map::max_bucket_count

size_type max_bucket_count() const noexcept;
Return maximum number of buckets
Returns the maximum number of buckets that the unordered_map container can have.

This is the maximum potential number of buckets the container can have due to system constraints or limitations on its library implementation.

Parameters

none

Return Value

The maximum number of buckets.

Member type size_type is an unsigned integral type.

Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// unordered_map limits
#include <iostream>
#include <unordered_map>

int main ()
{
  std::unordered_map<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;
}

Possible output:
max_size = 357913941
max_bucket_count = 357913941
max_load_factor = 1


Complexity

Constant.

Iterator validity

No changes.

See also