Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
This is an older version of Boost and was released in 2024. The current version is 1.90.0.
Assignment.
segments_encoded_ref& operator=( segments_encoded_ref const& other);
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.
this->assign( other.begin(), other.end() );
Linear in other.buffer().size().
Strong guarantee. Calls to allocate may throw.
|
Name |
Description |
|---|---|
|
|
The segments to assign. |