Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/container/unordered multimap/max bucket count"

From cppreference.com
m (Shorten template names. Use {{lc}} where appropriate.)
m (langlinks)
 
Line 1: Line 1:
 
{{include page|cpp/container/max_bucket_count|unordered_multimap}}
 
{{include page|cpp/container/max_bucket_count|unordered_multimap}}
  
[[de:cpp/container/unordered multimap/max bucket count]]
+
{{langlinks|de|es|fr|it|ja|pt|ru|zh}}
[[es:cpp/container/unordered multimap/max bucket count]]
+
[[fr:cpp/container/unordered multimap/max bucket count]]
+
[[it:cpp/container/unordered multimap/max bucket count]]
+
[[ja:cpp/container/unordered multimap/max bucket count]]
+
[[pt:cpp/container/unordered multimap/max bucket count]]
+
[[ru:cpp/container/unordered multimap/max bucket count]]
+
[[zh:cpp/container/unordered multimap/max bucket count]]
+

Latest revision as of 10:55, 4 December 2021

 
 
 
 
size_type max_bucket_count() const;
(since C++11)

Returns the maximum number of buckets the container is able to hold due to system or library implementation limitations.

Contents

[edit] Parameters

(none)

[edit] Return value

Maximum number of buckets.

[edit] Complexity

Constant.

[edit] Example

#include <iostream>
#include <unordered_map>
 
int main()
{
    struct Ha { std::size_t operator()(long x) const { return std::hash<long>{}(x); }; };
 
    auto c1 = std::unordered_multimap<char, long>{};
    auto c2 = std::unordered_multimap<long, long>{};
    auto c3 = std::unordered_multimap<long, long, std::hash<int>>{};
    auto c4 = std::unordered_multimap<long, long, Ha>{};
 
    std::cout
        << "Max bucket count of\n" << std::hex << std::showbase
        << "c1: " << c1.max_bucket_count() << '\n'
        << "c2: " << c2.max_bucket_count() << '\n'
        << "c3: " << c3.max_bucket_count() << '\n'
        << "c4: " << c4.max_bucket_count() << '\n'
        ;
}

Possible output:

Max bucket count of
c1: 0xfffffffffffffff
c2: 0xfffffffffffffff
c3: 0xfffffffffffffff
c4: 0xaaaaaaaaaaaaaaa

[edit] See also

returns the number of buckets
(public member function) [edit]