Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

basic_static_string::insert

Insert a character.

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

Insert a string.

BOOST_STATIC_STRING_CPP14_CONSTEXPR basic_static_string&
insert(
    size_type index,
    const_pointer s);
  » more...

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

template<
    std::size_t M>
BOOST_STATIC_STRING_CPP14_CONSTEXPR basic_static_string&
insert(
    size_type index,
    const basic_static_string< M, CharT, Traits >& str);
  » more...

BOOST_STATIC_STRING_CPP14_CONSTEXPR basic_static_string&
insert(
    size_type index,
    const basic_static_string& str);
  » more...

template<
    std::size_t M>
BOOST_STATIC_STRING_CPP14_CONSTEXPR basic_static_string&
insert(
    size_type index,
    const basic_static_string< M, CharT, Traits >& str,
    size_type index_str,
    size_type count = npos);
  » more...

BOOST_STATIC_STRING_CPP14_CONSTEXPR basic_static_string&
insert(
    size_type index,
    const basic_static_string& str,
    size_type index_str,
    size_type count = npos);
  » more...

BOOST_STATIC_STRING_CPP14_CONSTEXPR iterator
insert(
    const_iterator pos,
    value_type ch);
  » more...

Insert characters.

BOOST_STATIC_STRING_CPP14_CONSTEXPR iterator
insert(
    const_iterator pos,
    size_type count,
    value_type ch);
  » more...

Insert a range of characters.

template<
    typename InputIterator>
BOOST_STATIC_STRING_CPP14_CONSTEXPR std::enable_if< detail::is_input_iterator< InputIterator >::value &&!detail::is_forward_iterator< InputIterator >::value, iterator >::type
insert(
    const_iterator pos,
    InputIterator first,
    InputIterator last);
  » more...

template<
    typename ForwardIterator>
BOOST_STATIC_STRING_CPP14_CONSTEXPR std::enable_if< detail::is_forward_iterator< ForwardIterator >::value, iterator >::type
insert(
    const_iterator pos,
    ForwardIterator first,
    ForwardIterator last);
  » more...

Insert characters from an initializer list.

BOOST_STATIC_STRING_CPP14_CONSTEXPR iterator
insert(
    const_iterator pos,
    std::initializer_list< value_type > ilist);
  » more...

Insert characters from an object convertible to string_view_type.

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&
insert(
    size_type index,
    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&
insert(
    size_type index,
    const T& t,
    size_type index_str,
    size_type count = npos);
  » more...

template<
    typename ForwardIterator>
BOOST_STATIC_STRING_CPP14_CONSTEXPR auto
insert(
    const_iterator pos,
    ForwardIterator first,
    ForwardIterator last);
  » more...

PrevUpHomeNext