iterator insert(iterator pos, const T& x) Sequence Inserts x before pos. template <class InputIterator > void insert(iterator pos, InputIterator f, InputIterator l) [1] Sequence Inserts the range [first, last) before pos. void insert(iterator pos, size_type n, const T& x) Sequence Inserts n copies of x before pos. basic_string& insert(size_type pos, const basic_string& s) basic_string Inserts s before pos. basic_string& insert(size_type pos, const basic_string& s, size_type pos1, size_type n) basic_string Inserts a substring of s before pos. basic_string& insert(size_type pos, const charT* s) basic_string Inserts s before pos. basic_string& insert(size_type pos, const charT* s, size_type n) basic_string Inserts the first n characters of s before pos. basic_string& insert(size_type pos, size_type n, charT c) basic_string Inserts n copies of c before pos. basic_string& append(const basic_string& s) basic_string Append s to *this. basic_string& append(const basic_string& s, size_type pos, size_type n) basic_string Append a substring of s to *this. basic_string& append(const charT* s) basic_string Append s to *this. basic_string& append(const charT* s, size_type n) basic_string Append the first n characters of s to *this. basic_string& append(size_type n, charT c) basic_string Append n copies of c to *this. template <class InputIterator> basic_string& append (InputIterator first, InputIterator last) basic_string Append a range to *this. void push_back(charT c) basic_string Append a single character to *this. basic_string& operator+=(const basic_string& s) basic_string Equivalent to append(s). basic_string& operator+=(const charT* s)
Добавить отзыв
ВСЕ ОТЗЫВЫ О КНИГЕ В ИЗБРАННОЕ

0

Вы можете отметить интересные вам фрагменты текста, которые будут доступны по уникальной ссылке в адресной строке браузера.

Отметить Добавить цитату