std::unordered_multiset<Key,Hash,KeyEqual,Allocator>::bucket_size - cppreference.com (original) (raw)

| size_type bucket_size( size_type n ) const; | | (since C++11) | | ---------------------------------------------- | | ------------- |

Returns the number of elements in the bucket with index n.

[edit] Parameters

n - the index of the bucket to examine

[edit] Return value

The number of elements in the bucket n.

[edit] Complexity

Linear in the size of the bucket n.

[edit] See also