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 develop branch, built from commit 19f4a39232.
PrevUpHomeNext

basic_static_string::operator=

Assign to the string.

constexpr basic_static_string&
operator=(
    const basic_static_string& s);
  » more...

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

constexpr basic_static_string&
operator=(
    const_pointer s);
  » more...

constexpr basic_static_string&
operator=(
    value_type ch);
  » more...

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

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

PrevUpHomeNext