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 for the latest Boost documentation.
PrevUpHomeNext
static_string::append

static_string&
append(
    size_type count,
    CharT ch);
  » more...

template<
    std::size_t M>
static_string&
append(
    static_string< M, CharT, Traits > const& str);
  » more...

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

static_string&
append(
    CharT const* s,
    size_type count);
  » more...

static_string&
append(
    CharT const* s);
  » more...

template<
    class InputIt>
static_string&
append(
    InputIt first,
    InputIt last);
  » more...

static_string&
append(
    std::initializer_list< CharT > init);
  » more...

static_string&
append(
    string_view_type sv);
  » more...

template<
    class T>
std::enable_if< std::is_convertible< T const &, string_view_type >::value &&!std::is_convertible< T const &, CharT const * >::value, static_string & >::type
append(
    T const& t,
    size_type pos,
    size_type count = npos);
  » more...

PrevUpHomeNext