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::assign

Assign to the string.

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

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

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

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

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

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

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

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

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

PrevUpHomeNext