[#C76BF9C1DF3F4A4BFE52D0E7C12E7F176ED73317]

Class recycled

A thread-safe collection of instances of T

Synopsis

            template
class recycled;
        

Member Functions

Description

Instances of this type may be used to control where recycled instances of T come from when used with recycled_ptr .

Example

static recycled< std::string > bin; recycled_ptr< std::string > ps( bin ); // Put the string into a known state ps->clear();