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 make_slist

boost::intrusive::make_slist

Synopsis

// In header: <boost/intrusive/slist.hpp>

template<typename T, class... Options> 
struct make_slist {
  // types
  typedef unspecified                                                                                                                                                   value_traits;          
  typedef slist< slistopt< value_traits, typename packed_options::size_type, packed_options::constant_time_size, packed_options::linear, packed_options::cache_last > > implementation_defined;
  typedef implementation_defined                                                                                                                                        type;                  
  < slist_defaults< T > O1;
  < slist_defaults< T > O2;
  < slist_defaults< T > O3;
  < slist_defaults< T > O4;
  < slist_defaults< T > O5::type packed_options;
};

Description

Helper metafunction to define a slist that yields to the same type when the same options (either explicitly or implicitly) are used.


PrevUpHomeNext