:relfileprefix: ../../../../ [#boost-urls-grammar-recycled_ptr-2constructor-0f] = xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/grammar.adoc[pass:[grammar]]::xref:boost/urls/grammar/recycled_ptr.adoc[pass:[recycled_ptr]]::recycled_ptr Constructor == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- recycled_ptr(xref:boost/urls/grammar/recycled_ptr.adoc[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 [,cpp] ---- &this->bin() == &other->bin() && ! this->empty() && other.empty() ---- === Exception Safety Throws nothing. == Parameters |=== | Name | Description | *other* | The pointer to move from |===