recycled_ptr

Constructor

Synopsis

recycled_ptr(recycled_ptr&& other) noexcept;

Declared in file <include/boost/url/grammar/recycled.hpp> on line 342

Defined in file <include/boost/url/grammar/impl/recycled.hpp> on line 152

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.