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

RWTValSetConstIterator<T,C,A>

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


Does not inherit

Local Index

Members

Synopsis

#include<rw/tvset.h>
template <class T, class C, class A=std::allocator<T> >
class  RWTValSetConstIterator

Description

RWTValSetConstIterator provides a const iterator for class RWTValSet. A const iterator prohibits changes to the collection over which it is iterating.

The order of iteration over an RWTValSet is dependent on the supplied 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 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

RWTValSetConstIterator<T,C,A>(RWTValSet<T,C,A>& s);

Public Member Operators

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

Public Member Functions

const RWTValSet<T,C,A>*
container() const; 
const T&
key() const; 
void
reset();
void
reset(RWTValSet<T,C,A>& s);


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.