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

RWTPtrSortedDlistIterator<T,C,A>

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


Does not inherit

Local Index

Members

Synopsis

#include<rw/tpsrtdli.h>
RWTPtrSortedDlist<T,C,A> dl;
RWTPtrSortedDlistIterator<T,C,A> itr(dl);

Description

RWTPtrSortedDlistIterator provides the traditional Tools.h++ iterator interface to the standard library-based collections. (An STL iterator interface is provided through RWTPtrSortedDlist::iterator.)

The order of iteration over an RWTPtrSortedDlist is dependent on the comparator object parameter C as applied to the values stored in the container.

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 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 must have operator== and operator< defined. This requirement is imposed by the C++ Standard Library.

Persistence

None

Example

Program Output:

Public Constructors

RWTPtrSortedDlistIterator<T,C,A>(RWTPtrSortedDlist<T,C,A>& l);

Public Member Operators

T*
operator()();
bool
operator++();
bool
operator+=(size_type n); 
bool
operator--();
bool
operator-=(size_type n); 

Public Member Functions

RWTPtrSortedDlist<T,C,A>*
container() const; 
T*
findNext(const T* a); 
T*
findNext(bool(*fn)(T*, void*), void* d);
T*
key();
T*
remove();
T*
removeNext(const T*);
T*
removeNext(bool(*fn)(T*, void*), void* d);
void
reset();
void
reset(RWTPtrSortedDlist<T,C,A>& l);


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.