|
1002 | 1002 | basic_string& assign(InputIterator first, InputIterator last);
|
1003 | 1003 | basic_string& assign(initializer_list<charT>);
|
1004 | 1004 |
|
1005 |
| - basic_string& insert(size_type pos1, const basic_string& str); |
| 1005 | + basic_string& insert(size_type pos, const basic_string& str); |
1006 | 1006 | basic_string& insert(size_type pos1, const basic_string& str,
|
1007 | 1007 | size_type pos2, size_type n = npos);
|
1008 |
| - basic_string& insert(size_type pos1, basic_string_view<charT, traits> sv); |
| 1008 | + basic_string& insert(size_type pos, basic_string_view<charT, traits> sv); |
1009 | 1009 | template<class T>
|
1010 | 1010 | basic_string& insert(size_type pos1, const T& t,
|
1011 | 1011 | size_type pos2, size_type n = npos);
|
|
2361 | 2361 | \indexlibrarymember{insert}{basic_string}%
|
2362 | 2362 | \begin{itemdecl}
|
2363 | 2363 | basic_string&
|
2364 |
| - insert(size_type pos1, |
| 2364 | + insert(size_type pos, |
2365 | 2365 | const basic_string& str);
|
2366 | 2366 | \end{itemdecl}
|
2367 | 2367 |
|
|
2400 | 2400 |
|
2401 | 2401 | \indexlibrarymember{insert}{basic_string}%
|
2402 | 2402 | \begin{itemdecl}
|
2403 |
| -basic_string& insert(size_type pos1, basic_string_view<charT, traits> sv); |
| 2403 | +basic_string& insert(size_type pos, basic_string_view<charT, traits> sv); |
2404 | 2404 | \end{itemdecl}
|
2405 | 2405 |
|
2406 | 2406 | \begin{itemdescr}
|
2407 | 2407 | \pnum
|
2408 | 2408 | \effects
|
2409 |
| -Equivalent to: \tcode{return insert(pos1, sv.data(), sv.size());} |
| 2409 | +Equivalent to: \tcode{return insert(pos, sv.data(), sv.size());} |
2410 | 2410 | \end{itemdescr}
|
2411 | 2411 |
|
2412 | 2412 | \indexlibrarymember{insert}{basic_string}%
|
|
0 commit comments