Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the master branch, built from commit 064f557086.
PrevUpHomeNext
grammar::recycled_ptr::recycled_ptr (1 of 6 overloads)

Constructor.

Synopsis
recycled_ptr(
    recycled< T >& bin);
Description

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

Example
static recycled< std::string > bin;

recycled_ptr< std::string > ps( bin );

// Put the string into a known state
ps->clear();
Postconditions
&this->bin() == &bin && ! this->empty()
Parameters

Name

Description

bin

The recycle bin to use

See Also

recycled.


PrevUpHomeNext