Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
grammar::recycled_ptr::recycled_ptr (3 of 6 overloads)

Constructor.

Synopsis
recycled_ptr();
Description

Upon construction, this acquires exclusive access to an object of type T which is either recycled from a global recycle bin, or newly allocated. The object is in an unknown but valid state.

Example
recycled_ptr< std::string > ps;

// Put the string into a known state
ps->clear();
Postconditions
&this->[link url.ref.boost__urls__grammar__recycled_ptr.bin `bin`]() != nullptr && ! this->[link url.ref.boost__urls__grammar__recycled_ptr.empty `empty`]()
See Also

recycled.


PrevUpHomeNext