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

PrevUpHomeNext

Struct template deque_of

boost::container::pmr::deque_of

Synopsis

// In header: <boost/container/pmr/deque.hpp>

template<typename T> 
struct deque_of {
  // types
  typedef boost::container::deque< T, polymorphic_allocator< T > > type;
};

Description

A portable metafunction to obtain a deque that uses a polymorphic allocator


PrevUpHomeNext