Difference between revisions of "cpp/string/basic string/push back"
From cppreference.com
< cpp | string | basic string
m (Text replace - "{{params}}" to "===Parameters===") |
m (Text replace - "{{returns}}" to "===Return value===") |
||
Line 14: | Line 14: | ||
<!-- ======== --> | <!-- ======== --> | ||
− | + | ===Return value=== | |
{{return none}} | {{return none}} | ||
Revision as of 17:49, 2 August 2011
Template:cpp/string/basic string/sidebar
void push_back( CharT ch ); |
||
Appends the given character ch
to the end of the string.
Contents |
Parameters
ch | - | the character to append |