Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/string/basic string/rbegin"

From cppreference.com
< cpp‎ | string‎ | basic string
m (Text replace - "{{returns}}" to "===Return value===")
m (Text replace - "{{see also}}" to "===See also===")
Line 25: Line 25:
 
{{complex constant}}
 
{{complex constant}}
  
{{see also}}
+
===See also===
  
 
{{dcl list begin}}
 
{{dcl list begin}}
 
{{dcl list template | cpp/string/basic_string/dcl list rend}}
 
{{dcl list template | cpp/string/basic_string/dcl list rend}}
 
{{dcl list end}}
 
{{dcl list end}}

Revision as of 17:49, 2 August 2011

Template:cpp/string/basic string/sidebar Template:ddcl list begin <tr class="t-dcl ">

<td class="t-dcl-nopad">
iterator rbegin();
</td>

<td class="t-dcl-nopad"> </td> <td class="t-dcl-nopad"> </td> </tr> <tr class="t-dcl ">

<td class="t-dcl-nopad">
const_iterator rbegin() const;
</td>

<td class="t-dcl-nopad"> </td> <td class="t-dcl-nopad"> </td> </tr> <tr class="t-dcl ">

<td >
const_iterator crbegin() const;
</td>

<td class="t-dcl-nopad"> </td> <td > Template:mark c++0x feature </td> </tr> Template:ddcl list end

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

Parameters

Template:param none

Return value

reverse iterator to the first character

Template:complex Template:complex constant

See also

Template:cpp/string/basic string/dcl list rend