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 : private  {
public:
  // types
  typedef            ;          
  typedef      ;    
  typedef  ;
  typedef          ;        
  typedef     ;  
  typedef                      ;      

  // 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 member functions

  1. ();

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

  2.  ();

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

  3.  ();
    This frees all unnecessary memory.
  4.  ( key);
  5.  ( key) ;
  6.  
    ( key,  commit_data);
  7.  (, ,  v, 
                            commit_data);

PrevUpHomeNext