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

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

basic_static_string::insert

Insert into the string.

constexpr basic_static_string&
insert(
    size_type index,
    size_type count,
    value_type ch);
  » more...

constexpr basic_static_string&
insert(
    size_type index,
    const_pointer s);
  » more...

constexpr basic_static_string&
insert(
    size_type index,
    const_pointer s,
    size_type count);
  » more...

template<
    std::size_t M>
constexpr basic_static_string&
insert(
    size_type index,
    const basic_static_string< M, CharT, Traits >& str);
  » more...

template<
    std::size_t M>
constexpr basic_static_string&
insert(
    size_type index,
    const basic_static_string< M, CharT, Traits >& str,
    size_type index_str,
    size_type count = npos);
  » more...

constexpr iterator
insert(
    const_iterator pos,
    value_type ch);
  » more...

constexpr iterator
insert(
    const_iterator pos,
    size_type count,
    value_type ch);
  » more...

template<
    typename InputIterator>
constexpr iterator
insert(
    const_iterator pos,
    InputIterator first,
    InputIterator last);
  » more...

constexpr iterator
insert(
    const_iterator pos,
    std::initializer_list< value_type > ilist);
  » more...

template<
    typename T>
constexpr basic_static_string&
insert(
    size_type index,
    const T& t);
  » more...

template<
    typename T>
constexpr basic_static_string&
insert(
    size_type index,
    const T& t,
    size_type index_str,
    size_type count = npos);
  » more...

PrevUpHomeNext