Namespaces
Variants
Views
Actions

std::map::end, std::map::cend

From cppreference.com
< cpp‎ | container‎ | map
iterator end();
(until C++11)
iterator end() noexcept;
(since C++11)
const_iterator end() const;
(until 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 container.

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

range-begin-end.svg

Contents

[edit] Parameters

(none)

[edit] Return value

Iterator to the element following the last element.

[edit] Complexity

Constant.


[edit] See also

returns an iterator to the beginning
(public member function) [edit]