Namespaces
Variants
Views
Actions

std::vector::end, std::vector::cend

From cppreference.com
< cpp | container | vector
Revision as of 17:40, 2 November 2012 by P12bot (Talk | contribs)
iterator end();
const_iterator end() const;
const_iterator cend() const;
(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

Parameters

(none)

Return value

iterator to the element following the last element

Exceptions

noexcept specification:  
noexcept
  (since C++11)

Complexity

Constant

See also

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