std::unordered_multiset<Key,Hash,KeyEqual,Allocator>::end, std::unordered_multiset<Key,Hash,KeyEqual,Allocator>::cend
From cppreference.com
< cpp | container | unordered multiset
iterator end() noexcept; |
(1) | (since C++11) (constexpr since C++26) |
const_iterator end() const noexcept; |
(2) | (since C++11) (constexpr since C++26) |
const_iterator cend() const noexcept; |
(3) | (since C++11) (constexpr since C++26) |
Returns an iterator past the last element of *this.
This returned iterator only acts as a sentinel. It is not guaranteed to be dereferenceable.