Namespaces
Variants
Views
Actions

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

From cppreference.com
< cpp‎ | string‎ | basic string
m (Text replace - "{{param none}}" to "(none)")
m (Text replace - "{{return none}}" to "(none)")
Line 11: Line 11:
  
 
===Return value===
 
===Return value===
{{return none}}
+
(none)
  
 
===Complexity===
 
===Complexity===

Revision as of 13:32, 11 October 2011

Template:cpp/string/basic string/sidebar

void clear();

Removes all characters from the string. The allocated memory will not be released, effectively leaving the capacity of the string unchanged. The past-the-end iterators are not invalidated.

Contents

Parameters

(none)

Return value

(none)

Complexity

linear in the size of the string.

See also

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