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

RWTPtrSetConstIterator<T,C,A>

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


Does not inherit

Local Index

Members

Synopsis

#include <rw/tpset.h>
template <class T, class C, class A=std::allocator<T*> >
class  RWTPtrSetConstIterator

Description

RWTPtrSetConstIterator provides a const iterator interface to standard library-based RWTPtrSet collections. A const iterator does not modify any information in the underlying data structure.

The order of iteration over an RWTPtrSet is dependent on the comparator object supplied 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 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== and operator< defined. This requirement is imposed by the C++ Standard Library.

Persistence

None

Public Constructors

RWTPtrSetConstIterator<T,C,A>(const RWTPtrSet<T,C,A>& s);

Public Member Operators

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

Public Member Functions

const RWTPtrSet<T,C,A>*
container() const; 
const T*
key() const; 
void
reset();
void
reset(RWTPtrSet<T,C,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.