Scroll to navigation

std::unordered_multiset::end,(3) C++ Standard Libary std::unordered_multiset::end,(3)

NAME

std::unordered_multiset::end, - std::unordered_multiset::end,

Synopsis


iterator end() noexcept; (since C++11)
const_iterator end() const noexcept; (since C++11)
const_iterator cend() const noexcept; (since C++11)


Returns an iterator to the element following the last element of the
unordered_multiset.


This element acts as a placeholder; attempting to access it results in undefined
behavior.


range-begin-end.svg

Parameters


(none)

Return value


Iterator to the element following the last element.

Complexity


Constant.

Notes


Because both iterator and const_iterator are constant iterators (and may in fact be
the same type), it is not possible to mutate the elements of the container through
an iterator returned by any of these member functions.

Example

// Run this code


#include <iostream>
#include <iterator>
#include <string>
#include <unordered_set>


int main() {
const std::unordered_multiset<std::string> words = {
"some", "words", "to", "count",
"count", "these", "words"
};


for (auto it = words.begin(); it != words.end(); ) {
auto cnt = words.count(*it);
std::cout << *it << ":\t" << cnt << '\n';
std::advance(it, cnt); // all cnt elements have equivalent keys
}
}

Possible output:


some: 1
words: 2
to: 1
count: 2
these: 1

See also


begin returns an iterator to the beginning
cbegin (public member function)
(C++11)
end
cend returns an iterator to the end of a container or array
(C++11) (function template)
(C++14)

2022.07.31 http://cppreference.com