Namespaces
Variants
Views
Actions

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

From cppreference.com
< cpp‎ | string‎ | basic string
m (1 revision: import content)
m (Text replace - "{{see also}}" to "===See also===")
Line 29: Line 29:
  
 
<!-- ======== -->
 
<!-- ======== -->
{{see also}}
+
===See also===
  
 
{{dcl list begin}}
 
{{dcl list begin}}
 
{{dcl list template | cpp/string/basic_string/dcl list begin}}
 
{{dcl list template | cpp/string/basic_string/dcl list begin}}
 
{{dcl list end}}
 
{{dcl list end}}

Revision as of 17:08, 2 August 2011

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

<td class="t-dcl-nopad">
iterator end();
</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 end() const;
</td>

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

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

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

Returns an iterator to the character following the last character of the string. This character acts as a placeholder, attempting to access it results in undefined behavior.

Template:params Template:param none

Template:returns

iterator to the character following the last character

Template:complex Template:complex constant

See also

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