[#ABDEE1A0C212F3D1CA1B9D142A05CE7800ED1277]

Function recycled_ptr:: recycled_ptr

Constructor

Synopsis

            recycled_ptr(recycled_ptr const& other) noexcept;
        

Description

If `other` references an object, the newly constructed pointer acquires shared ownership. Otherwise this is empty. The new pointer references the same recycle bin as `other`.

Postconditions

&this->bin() == &other->bin() && this->get() == other.get()

Exception Safety

Throws nothing.