boost::urls::grammar::recycled_ptr::recycled_ptr

Constructor

Synopsis

recycled_ptr(recycled_ptr&& other) noexcept;
cpp

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.

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

Exception Safety

Throws nothing.

Parameters

Name Description

other

The pointer to move from

Created with MrDocs