operator=

Assignment

Synopsis

segments_encoded_ref&
operator=(const segments_encoded_ref& other);

Declared in file <include/boost/url/segments_encoded_ref.hpp> on line 160

Defined in file <src/segments_encoded_ref.cpp> on line 44

Description

The existing contents are replaced by a copy of the other segments. All iterators are invalidated.

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

Effects

this->assign( other.begin(), other.end() );

Complexity

Linear in other.buffer().size().

Exception Safety

Strong guarantee. Calls to allocate may throw. @ {