The Wayback Machine - https://web.archive.org/web/20161001032333/http://en.cppreference.com:80/w/cpp/container/array/rbegin
Namespaces
Variants
Views
Actions

std::array::rbegin, std::array::crbegin

From cppreference.com
< cpp‎ | container‎ | array
iterator rbegin();
(until C++17)
constexpr iterator rbegin();
(since C++17)
const_iterator rbegin() const;
(until C++17)
constexpr const_iterator rbegin() const;
(since C++17)
const_iterator crbegin() const;
(until C++17)
constexpr const_iterator crbegin() const;
(since C++17)

Returns a reverse iterator to the first element of the reversed container. It corresponds to the last element of the non-reversed container.

range-rbegin-rend.svg

Contents

[edit] Parameters

(none)

[edit] Return value

Reverse iterator to the first element.

[edit] Exceptions

noexcept specification:  
noexcept
  

[edit] Complexity

Constant.

[edit] See also

returns a reverse iterator to the end
(public member function) [edit]
Morty Proxy This is a proxified and sanitized view of the page, visit original site.