std::basic_string::clear
From cppreference.com
< cpp | string | basic string
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 |
[edit] Parameters
(none)
[edit] Return value
(none)
[edit] Complexity
linear in the size of the string.
[edit] See also
removes characters (public member function) |