VOOZH about

URL: https://www.geeksforgeeks.org/cpp/unordered_multimap-cbegin-function-in-c-stl/

⇱ unordered_multimap cbegin() function in C++ STL - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

unordered_multimap cbegin() function in C++ STL

Last Updated : 8 Aug, 2018
The unordered_multimap::cbegin() is a built-in function in C++ STL which returns a constant iterator pointing to the first element in the container or to the first element in one of its bucket. Syntax:
unordered_multimap_name.cbegin(n)
Parameters: The function accepts one parameter. If a parameter is passed, it returns a constant iterator pointing to the first element in the bucket. If no parameter is passed, then it returns a constant iterator pointing to the first element in the unordered_multimap container. Return Value: It returns a constant iterator. It cannot be used to change the value of the unordered_multimap element. Below programs illustrates the above function: Program 1:
Output:
Key and Elements : 
 2 3
 2 3
 1 2
 3 4
 3 4

The first element and key: 2 3
Program 2:
Output:
Key and Elements of first bucket: 
 1 2

The first element and key in first bucket: 1 2
Comment