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 data_t

boost::intrusive::rbtree::data_t

Synopsis

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



struct data_t {
  // types
  typedef rbtree::value_traits value_traits;

  // construct/copy/destruct
  data_t(const value_compare &, const value_traits &);
  node_plus_pred_t node_plus_pred_;
};

Description

data_t public construct/copy/destruct

  1. data_t(const value_compare & comp, const value_traits & val_traits);

PrevUpHomeNext