Rogue Wave banner
Previous fileTop of DocumentContentsIndex pageNext file
Essential Tools Module Reference Guide
Rogue Wave web site:  Home Page  |  Main Documentation Page

RWTPtrHashMultiSetConstIterator<T,H,EQ,A>

Module:  Essential Tools Module   Group:  STL Extension-based Collection Classes

Local Index

Members

Synopsis

#include <rw/tphasht.h>
template <class T, class H, class EQ, 
          class A=std::allocator<T*> >
class  RWTPtrHashMultiSetConstIterator

Description

RWTPtrHashMultiSetConstIterator provides a const iterator interface to the standard library-based RWTPtrHashMultiSet collection. This iterator prohibits changes to the collection that is being iterated through.

Iteration over an RWTPtrHashMultiSet is pseudorandom and dependent on the capacity of the underlying hash table and the hash function being used. The only usable relationship between consecutive elements is that all elements which are defined to be equivalent by the equivalence object, EQ, will remain adjacent.

The current item referenced by this iterator is undefined after construction or after a call to reset() operation. The iterator becomes valid after being advanced with either a preincrement or operator().

For both operator++ and operator(), iterating past the last element returns a value equivalent to boolean false. Continued increments return a value equivalent to false until reset() is called.

The value type must have operator== defined. This requirement is imposed by the C++ Standard Library.

Persistence

None

Public Constructors

RWTPtrHashMultiSetConstIterator<T,H,EQ,A>(RWTPtrHashMultiSet<T,H,EQ,A>& h);

Public Member Operators

const T*
operator()();
bool
operator++();

Public Member Functions

const RWTPtrHashMultiSet<T,H,EQ,A>*
container() const; 
const T*
key() const; 
void
reset();
void
reset(RWTPtrHashMultiSet<T,H,EQ,A>& h);


Previous fileTop of DocumentContentsIndex pageNext file

© Copyright Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave and SourcePro are registered trademarks of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.
Contact Rogue Wave about documentation or support issues.