:relfileprefix: ../../../../ [#5631E67936C7B3C85010D8FB06002786645641DC] = Function recycled_ptr::recycled_ptr pass:v,q[Constructor] == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- recycled_ptr(); ---- == Description pass:v,q[Upon construction, this acquires] pass:v,q[exclusive access to an object of type] pass:v,q[`T` which is either recycled from a] pass:v,q[global recycle bin, or newly allocated.] pass:v,q[The object is in an unknown but] pass:v,q[valid state.] === Example [,cpp] ---- recycled_ptr< std::string > ps; // Put the string into a known state ps->clear(); ---- === Postconditions [,cpp] ---- &this->bin() != nullptr && ! this->empty() ---- == Return Value * `void`