Assignment from iterators.
template< class FwdIt> void assign( FwdIt first, FwdIt last);
The query parameters are replaced by the contents of the range. The behavior is undefined if the elements belong to the container.
Linear in the size of the input range.
Strong guarantee. Calls to allocate may throw.
Name |
Description |
---|---|
|
Iterator to first query parameter |
|
Iterator to one past the last query parameter |