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

RWTValSlistConstIterator<T,A>

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


Does not inherit

Local Index

Members

Synopsis

#include <rw/tvslist.h>
template <class T, class A=std::allocator<T> > class
RWTValSlistConstIterator

Description

RWTValSlistConstIterator provides an iterator interface for class RWTValSlist. A const iterator prohibits any changes to the collection over which it iterates.

The order of iteration over an RWTValSlist is dependent on the order of insertion of the values into 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 equal 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

RWTValSlistConstIterator<T,A>(RWTValSlist<T,A>& s); 

Public Member Operators

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

Public Member Functions

const RWTValSlist<T,A>*
container() const; 
bool
findNext(const_reference a); 
bool
findNext(bool(*fn)(const_reference, void*), void* d);
const T&
key();
void
reset();
void
reset(RWTValSlist<T,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.