Namespaces
Variants
Views
Actions

std::basic_string::rbegin, std::basic_string::crbegin

From cppreference.com
< cpp | string | basic string
Revision as of 15:06, 15 June 2012 by P12bot (Talk | contribs)
 
 
 
std::basic_string
 
iterator rbegin();
const_iterator rbegin() const;
const_iterator crbegin() const;
(since C++11)

Returns a reverse iterator to the first character of the reversed string. It corresponds to the last character of the non-reversed string.

Contents

Parameters

(none)

Return value

reverse iterator to the first character

Complexity

Constant

See also

returns a reverse iterator to the end
(public member function) [edit]