Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class template null_index

boost::interprocess::null_index

Synopsis

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

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

  // construct/copy/destruct
  (segment_manager_base *);

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

Description

Null index type used to save compilation time when named indexes are not needed.

null_index public construct/copy/destruct

  1. (segment_manager_base *);
    Empty constructor.

null_index public member functions

  1.  () ;

    begin() is equal to end()

  2.  ();

    begin() is equal to end()

  3.  () ;

    begin() is equal to end()

  4.  ();

    begin() is equal to end()


PrevUpHomeNext