...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Append a range of characters.
template< class InputIt> string& append( InputIt first, InputIt last);
Appends characters from the range {first, last)
to the end of the string.
{first, last)
shall be a valid range
Strong guarantee.
Type |
Description |
---|---|
|
The type of the iterators. |
InputIt
satisfies InputIterator.
*this
Name |
Description |
---|---|
|
An iterator representing the first character to append. |
|
An iterator one past the last character to append. |
Type |
Thrown On |
---|---|
|
|