Assignment
recycled_ptr&
operator=(
const recycled_ptr& other) noexcept;
Declared in file <boost/url/grammar/impl/recycled.hpp> at line 178
If `other` references an object, this acquires shared ownership and references the same recycle bin as `other`. The previous object if any is released.
this->release()
&this->bin() == &other->bin() && this->get() == other.get()
Throws nothing.