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 slistopt

boost::intrusive::slistopt — @

Synopsis

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

template<typename ValueTraits, typename SizeType, bool ConstantTimeSize, 
         bool Linear, bool CacheLast> 
struct slistopt {
  // types
  typedef ValueTraits value_traits;
  typedef SizeType    size_type;   
  static const bool constant_time_size;
  static const bool linear;
  static const bool cache_last;
};

PrevUpHomeNext