Constructor
void
recycled_ptr(
recycled_ptr&& other) noexcept;
Declared in file <boost/url/grammar/impl/recycled.hpp> at line 152
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->bin() == &other->bin() && ! this->empty() && other.empty()
Throws nothing.