|  | Home | Libraries | People | FAQ | More | 
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. | 
            InputItsatisfies InputIterator.
          
            *this
          
| Name | Description | 
|---|---|
| 
                       | An iterator representing the first character to append. | 
| 
                       | An iterator one past the last character to append. | 
| Type | Thrown On | 
|---|---|
| 
                       | 
                       |