Constructor

Synopsis

Declared in header </boost/url/grammar/recycled.hpp#L243[boost/url/grammar/recycled.hpp,window=blank_]>

recycled_ptr(
    recycled<T>& bin,
    nullptr_t) noexcept;

Description

After construction, this is empty and refers to the specified recycle bin.

Example

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

&this->bin() == &bin && this->empty()

Exception Safety

Throws nothing.

Return Value

  • void

Parameters

Name Type

bin

``

**

nullptr_t