replace

Replace segments

Synopsis

template< class FwdIt> iterator replace( iterator from, iterator to, FwdIt first, FwdIt last);

Declared in file <boost/url/impl/segments_encoded_ref.hpp> at line 101

Description

This function replaces a range of segments with annother range of segments. Reserved characters in the new range are automatically escaped. Escapes in the new range are preserved.

All iterators that are equal to `from` or come after are invalidated.

Preconditions

None of the character buffers referenced by the new range may overlap the character buffer of the underlying url, or else the behavior is undefined.

Complexity

Linear in `std::distance( first, last ) + this->url().encoded_resouce().size()`.

Exception Safety

Strong guarantee. Calls to allocate may throw. Exceptions thrown on invalid input.