![]() |
Home | Libraries | People | FAQ | More |
Insert a character.
string& insert( std::size_t pos, std::size_t count, char ch);
Inserts count
copies
of ch
at the position
pos
.
Strong guarantee.
All references, pointers, or iterators referring to contained elements are invalidated. Any past-the-end iterators are also invalidated.
*this
Name |
Description |
---|---|
|
The index to insert at. |
|
The number of characters to insert. |
|
The character to insert. |
Type |
Thrown On |
---|---|
|
|
|
|