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/private_node_allocator.hpp>

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

Description

Obtains node_allocator_base from node_allocator_base

Obtains adaptive_pool_base from adaptive_pool_base


PrevUpHomeNext