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 template node_functions

boost::intrusive::node_functions

Synopsis

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

template<typename NodeTraits> 
struct node_functions {

  // public static functions
  static void store_hash(typename NodeTraits::node_ptr, std::size_t, 
                         unspecified);
  static void store_hash(typename NodeTraits::node_ptr, std::size_t, 
                         unspecified);
};

Description

node_functions public static functions

  1. static void store_hash(typename NodeTraits::node_ptr p, std::size_t h, 
                           unspecified);
  2. static void store_hash(typename NodeTraits::node_ptr, std::size_t, 
                           unspecified);

PrevUpHomeNext