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 an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Struct template rebind

boost::interprocess::rebind — Obtains node_allocator from other node_allocator.

Synopsis

// In header: <boost/interprocess/allocators/adaptive_pool.hpp>

template<typename T2> 
struct rebind {
  // types
  typedef adaptive_pool_base< Version, T2, SegmentManager, NodesPerBlock, MaxFreeBlocks, OverheadPercent > other;
};

Description

Obtains adaptive_pool_base from adaptive_pool_base

Obtains node_allocator_base from node_allocator_base


PrevUpHomeNext