Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

basic_static_string::operator=

Assign to the string.

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

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

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

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

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

template<
    typename T,
    [role red error.class-detail-template.1][role red error.class-detail-template.2] = detail::enable_if_viewable_t<T, CharT, Traits>>
BOOST_STATIC_STRING_CPP14_CONSTEXPR basic_static_string&
operator=(
    const T& t);
  » more...

PrevUpHomeNext