A thread-safe collection of instances of T
Synopsis
Declared in header </boost/url/grammar/recycled.hpp#L73[boost/url/grammar/recycled.hpp,window=blank_]>
template<class T>
class recycled;
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();