Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

basic_static_string::append

Appends count copies of character ch

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

Append to the string.

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

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

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

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

template<
    typename InputIterator>
BOOST_STATIC_STRING_CPP14_CONSTEXPR std::enable_if< detail::is_input_iterator< InputIterator >::value, basic_static_string & >::type
append(
    InputIterator first,
    InputIterator last);
  » more...

BOOST_STATIC_STRING_CPP14_CONSTEXPR basic_static_string&
append(
    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&
append(
    const T& t);
  » 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&
append(
    const T& t,
    size_type pos,
    size_type count = npos);
  » more...

PrevUpHomeNext