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_treap_opt

boost::intrusive::make_treap_opt — #if !defined(BOOST_INTRUSIVE_VARIADIC_TEMPLATES)

Synopsis

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

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

PrevUpHomeNext