std::unordered_multiset::end(int), std::unordered_multiset::cend(int)

From Cppreference

Jump to: navigation, search
iterator end( size_type n );
(C++11 feature)
const_iterator end( size_type n ) const;
(C++11 feature)
const_iterator cend( size_type n ) const;
(C++11 feature)

Returns an iterator to the element following the last element of the bucket with index n. . This element acts as a placeholder, attempting to access it results in undefined behavior.

Contents

[edit] Parameters

n - the index of the bucket to access

[edit] Return value

iterator to the element following the last element

[edit] Complexity

Constant

[edit] See also

begin(int)
cbegin(int)
returns an iterator to the beginning of the specified bucket
(public member function)