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

Constructor

Synopsis

Declared in <boost/url/grammar/recycled.hpp>
recycled_ptr(
    recycled<T>& bin,
    std::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.

Parameters

Name Description
bin The recycle bin to use

See Also

acquire, recycled, release.

Created with MrDocs