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 intrusive_key_value_less

boost::interprocess::iset_index::intrusive_key_value_less — @ private:

Synopsis

// In header: <boost/interprocess/indexes/iset_index.hpp>



// @ private:

struct intrusive_key_value_less {

  // public member functions
  bool operator()(const intrusive_compare_key_type &, const value_type &) const;
  bool operator()(const value_type &, const intrusive_compare_key_type &) const;
};

Description

intrusive_key_value_less public member functions

  1. bool operator()(const intrusive_compare_key_type & i, const value_type & b) const;
  2. bool operator()(const value_type & b, const intrusive_compare_key_type & i) const;

PrevUpHomeNext