A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://cplusplus.com/reference/unordered_set/unordered_set/max_bucket_count/ below:

public member function

<unordered_set>

std::unordered_set::max_bucket_count
size_type max_bucket_count() const noexcept;

Return maximum number of buckets

Returns the maximum number of buckets that the unordered_set 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_set limits
#include <iostream>
#include <unordered_set>

int main ()
{
  std::unordered_set<int> myset;

  std::cout << "max_size = " << myset.max_size() << std::endl;
  std::cout << "max_bucket_count = " << myset.max_bucket_count() << std::endl;
  std::cout << "max_load_factor = " << myset.max_load_factor() << std::endl;

  return 0;
}

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


Complexity Constant.

Iterator validity No changes.

See also
unordered_set::max_size
Return maximum size (public member function)
unordered_set::max_load_factor
Get or set maximum load factor (public member function)
unordered_set::bucket_count
Return number of buckets (public member function)

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4