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 to view this page for the latest version.
PrevUpHomeNext

Struct template slist_of

boost::container::pmr::slist_of

Synopsis

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

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

Description

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


PrevUpHomeNext