Tools.h++ Class Reference

Table Of Contents
Click on the banner to return to the Class Reference home page.
©Copyright 1996 Rogue Wave Software
RWBagIterator
RWBagIterator RWIterator
Synopsis
Description
Persistence
Public Constructor
Public Member Operator
Public Member Functions
Synopsis
#include <rw/rwbag.h>
RWBag b;
RWBagIterator it(b);
Description
Iterator for class RWBag, which allows sequential access to all the elements of RWBag. Note
that because an RWBag is unordered, elements are not accessed in any particular order. If an
item was inserted N times into the collection, then it will be visited N consecutive times.
Like all Rogue Wave iterators, the "current item" is undefined immediately after construction --
you must define it by using operator() or some other (valid) operation.
Once the iterator has advanced beyond the end of the collection it is no longer valid --
continuing to use it will bring undefined results.
Persistence
None