end

Syntax:

    #include <map>
    iterator end();
    const_iterator end() const;

The end() function returns an iterator just past the end of the map.

Note that before you can access the last element of the map using an iterator that you get from a call to end(), you'll have to decrement the iterator first.

Related Topics: begin, rbegin, rend