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 a snapshot of the develop branch, built from commit 86319a8e16.
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