Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

basic_static_string::erase

Removes min(count, size() - index) characters starting at index

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

Removes the character at pos

BOOST_STATIC_STRING_CPP14_CONSTEXPR iterator
erase(
    const_iterator pos);
  » more...

Removes the characters in the range (first, last)

BOOST_STATIC_STRING_CPP14_CONSTEXPR iterator
erase(
    const_iterator first,
    const_iterator last);
  » more...

PrevUpHomeNext