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

RWTValHashMapIterator<K,T,H,EQ,A>

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


Does not inherit

Local Index

Members

Synopsis

#include<rw/tvhdict.h>
RWTValHashMap<K,T,H,EQ,A> m;
RWTValHashMap<K,T,H,EQ,A> itr(m);

Description

RWTValHashMapIterator iprovides the traditional Tools.h++ iterator interface to the standard library-based collections. (An STL iterator interface is provided through RWTValHashMap::iterator.)

Iteration over an RWTValHashMap 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 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(). The iterator becomes valid after being advanced with either a preincrement or an operator().

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

The value type T must have operator== defined.

Persistence

None

Example

Program Output (not necessarily in this order):

Public Constructors

RWTValHashMapIterator<K,T,H,EQ,A>(RWTValHashMap<K,T,H,EQ,A>& h); 

Public Member Operators

bool
operator()();
bool
operator++();

Public Member Functions

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


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.