[#boost-urls-grammar-recycled_ptr-2constructor-0ac] = xref:boost/urls/grammar/recycled_ptr/2constructor-0ac.adoc[boost::urls::grammar::recycled_ptr::recycled_ptr] :relfileprefix: ../../../../ :mrdocs: Constructor == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/grammar/recycled.hpp#L242[boost/url/grammar/recycled.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- recycled_ptr( xref:boost/urls/grammar/recycled.adoc[recycled<T>]& bin, std::nullptr_t) noexcept; ---- == Description After construction, this is empty and refers to the specified recycle bin. == Example [,cpp] ---- static recycled< std::string > bin; recycled_ptr< std::string > ps( bin, nullptr ); // Acquire a string and put it into a known state ps->acquire(); ps->clear(); ---- == Postconditions [,cpp] ---- &this->bin() == &bin && this->empty() ---- == Exception Safety Throws nothing. == Parameters [cols=2] |=== | Name | Description | *bin* | The recycle bin to use |=== == See Also xref:boost/urls/grammar/recycled_ptr/acquire.adoc[`acquire`], xref:boost/urls/grammar/recycled.adoc[`recycled`], xref:boost/urls/grammar/recycled_ptr/release.adoc[`release`]. [.small]#Created with https://www.mrdocs.com[MrDocs]#