Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

basic_static_string::erase
PrevUpHomeNext

Erase from the string.

constexpr basic_static_string&
erase(
    basic_static_string::size_type index = 0,
    basic_static_string::size_type count = basic_static_string::npos);
  » more...

constexpr basic_static_string::iterator
erase(
    basic_static_string::const_iterator pos);
  » more...

constexpr basic_static_string::iterator
erase(
    basic_static_string::const_iterator first,
    basic_static_string::const_iterator last);
  » more...

PrevUpHomeNext