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 for the latest Boost documentation.
PrevUpHomeNext

Struct template make_splaytree_opt

boost::intrusive::make_splaytree_opt — @

Synopsis

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

template<typename T, typename O1 = none, typename O2 = none, 
         typename O3 = none, typename O4 = none> 
struct make_splaytree_opt {
  // types
  typedef pack_options< splay_set_defaults< T >, O1, O2, O3, O4 >::type                                                                         packed_options;
  typedef unspecified                                                                                                                           value_traits;  
  typedef splaysetopt< value_traits, typename packed_options::compare, typename packed_options::size_type, packed_options::constant_time_size > type;          
};

PrevUpHomeNext