[#F3808FC83560C3D485387D1DE71BD767718427CD]

Function recycled_ptr:: recycled_ptr

Constructor

Synopsis

            recycled_ptr(recycled_ptr&& other) noexcept;
        

Description

If `other` references an object, ownership is transferred including a reference to the recycle bin. After the move, the moved-from object is empty.

Postconditions

&this->bin() == &other->bin() && ! this->empty() && other.empty()

Exception Safety

Throws nothing.