The
unordered_multiset::cend() is a built-in function in C++ STL which returns a constant iterator pointing to the position immediately after the last element in the container or to the position immediately after the last element in one of its bucket.
Syntax:
unordered_multiset_name.cend(n)
Parameters: The function accepts one parameter. If a parameter is passed, it returns a constant iterator pointing to the position immediately after the last element in the bucket. If no parameter is passed, then it returns a constant iterator pointing to the position immediately after the last element in the unordered_multiset container.
Return Value: It returns a constant iterator. It cannot be used to modify the content of the container.
Below programs illustrate the above function:
Program 1:
Output:
Elements: 13 13 10 15 15
Program 2:
Output:
Elements: z a b b b
Program 3: