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

RWTPtrDlistConstIterator<T,A>

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

Local Index

Members

Synopsis

#include <rw/tpdlist.h>
template <class T, class A=std::allocator<T*> >
class  RWTPtrDlistConstIterator

Description

RWTPtrDlistConstIterator provides a const iterator interface to the C++ Standard Library-based collections. This iterator prohibits any changes to the underlying collection.

The order of iteration over an RWTPtrDlist is dependent on the order of the values 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 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. For operator--, decrementing past the first element returns a value equivalent to false.

Persistence

None

Public Constructors

RWTPtrDlistConstIterator<T,A>(RWTPtrDlist<T,A>& l); 

Public Member Operators

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

Public Member Functions

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