Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class template iset_index

boost::interprocess::iset_index

Synopsis

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

template<typename MapConfig> 
class iset_index : public  {
public:
  // types
  typedef            ;          
  typedef      ;    
  typedef  ;
  typedef          ;        

  // construct/copy/destruct
  ();

  // public member functions
   ();
   ();
   ();
   () ;
   
  (, );
};

Description

Index type based in boost::intrusive::set. Just derives from boost::intrusive::set and defines the interface needed by managed memory segments*<zwj></zwj>/

iset_index public construct/copy/destruct

  1. ();

    Constructor. Takes a pointer to the segment manager. Can throw

iset_index public member functions

  1.  ();

    This reserves memory to optimize the insertion of n elements in the index

  2.  ();
    This frees all unnecessary memory.
  3.  ( key);
  4.  ( key) ;
  5.  
    ( key, 
                  commit_data);

PrevUpHomeNext