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 data_type

boost::intrusive::bucket_plus_vtraits::data_type

Synopsis

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



struct data_type : public ValueTraits, public BucketTraits {
  // construct/copy/destruct
  data_type(const ValueTraits &, const BucketTraits &);
  data_type(data_type &&);
};

Description

data_type public construct/copy/destruct

  1. data_type(const ValueTraits & val_traits, const BucketTraits & b_traits);
  2. data_type(data_type && other);

PrevUpHomeNext