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 a snapshot of the master branch, built from commit 69109f5924.
PrevUpHomeNext

basic_static_string::append

Append to the string.

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

template<
    std::size_t M>
constexpr basic_static_string&
append(
    const basic_static_string< M, CharT, Traits >& s);
  » more...

template<
    std::size_t M>
constexpr basic_static_string&
append(
    const basic_static_string< M, CharT, Traits >& s,
    size_type pos,
    size_type count = npos);
  » more...

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

constexpr basic_static_string&
append(
    const_pointer s);
  » more...

template<
    typename InputIterator>
constexpr basic_static_string&
append(
    InputIterator first,
    InputIterator last);
  » more...

constexpr basic_static_string&
append(
    std::initializer_list< value_type > ilist);
  » more...

template<
    typename T>
constexpr basic_static_string&
append(
    const T& t);
  » more...

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

PrevUpHomeNext