Click on the banner to return to the Class Reference home page.
Return to the Appendix home page.

©Copyright 1996 Rogue Wave Software

RWTValSlistIterator<T>

Alternate template: Standard C++ Library not required

Synopsis

#include <rw/tvslist.h>
RWTValSlist<T> list;
RWTValSlistIterator<T> iterator(list);

Please Note!


If you do not have the Standard C++ Library, use the interface described here. Otherwise, use the interface to RWTValSlistIterator described in the Class Reference.


Description

Iterator for class RWTValSlist<T>, allowing sequential access to all the elements of a singly-linked parameterized list. Elements are accessed in order, from first to last.

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

Public Constructor

RWTValSlistIterator<T>(RWTValSlist<T>& c);

Public Member Operators

RWBoolean
operator++();
RWBoolean
operator+=(size_t n);
RWBoolean
operator()();

Public Member Functions

RWTValSlist<T>*
container() const;
RWBoolean
findNext(const T& a);
RWBoolean
findNext(RWBoolean (*testFun)(const T&, void*),void*);
void
insertAfterPoint(const T& a);
T
key() const;
RWBoolean
remove();
RWBoolean
removeNext(const T& a);
RWBoolean
removeNext(RWBoolean (*testFun)(const T&, void*),void*);
void
reset();
void
reset(RWTValSlist<T>& c);