Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template rebind

boost::mpi::allocator::rebind — Retrieve the type of an allocator similar to this allocator but for a different value type.

Synopsis


// Retrieve the type of an allocator similar to this allocator but for a different value type. template<typename U> 
struct rebind {
  // types
  typedef allocator< U > other;
};

PrevUpHomeNext