PrevUpHomeNext

Function template make_fastnode

boost::make_fastnode

Synopsis

// In header: <boost/smart_ptr/root_ptr.hpp>


template<typename V, typename PoolAllocator = pool_allocator<V> > 
  node_ptr< V > make_fastnode(node_proxy const & x);

Description

Instanciates a new node_ptr<> .

[Note] Note

Uses fast_pool_allocator to instanciate the pointee object.

Parameters:

x

Reference to a node_proxy the pointer belongs to.


PrevUpHomeNext