Assignment
recycled_ptr&
operator=(
recycled_ptr&& other) noexcept;
Declared in file <boost/url/grammar/impl/recycled.hpp> at line 162
If `other` references an object, ownership is transferred including a reference to the recycle bin. After the move, the moved-from object is empty.
this->release()
&this->bin() == &other->bin()
Throws nothing.