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

RWSlistCollectablesIterator

Module:  Essential Tools Module   Group:  RWCollectable Classes


RWSlistCollectablesIteratorRWIterator

Local Index

Members

Synopsis

// Smalltalk typedef.
typedef RWSlistCollectablesIterator LinkedListIterator;
#include <rw/slistcol.h>
RWSlistCollectables sc;
RWSlistCollectablesIterator sci(sc) ;

Description

Iterator for class RWSlistCollectables. Traverses the linked-list from the first to last item.

The "current item" is undefined immediately after construction -- you must define it by using operator() or some other (valid) operation.

Once the iterator has advanced beyond the end of the collection it is no longer valid -- continuing to use it will bring undefined results.

Persistence

None

Public Constructor

RWSlistCollectablesIterator (RWSlistCollectables&);

Public Member Operators

virtual RWCollectable*
operator()();
void
operator++(); 
void
operator+=(size_t n); 

Public Member Functions

bool
atFirst() const;
bool
atLast() const;
virtual RWCollectable*
findNext(const RWCollectable* target);
RWCollectable*
findNextReference(const RWCollectable* e);
RWCollectable*
insertAfterPoint(RWCollectable* a);
virtual RWCollectable*
key() const;
RWCollectable*
remove();
RWCollectable*
removeNext(const RWCollectable* target);
RWCollectable*
removeNextReference(const RWCollectable* e);
virtual void
reset();
void
toFirst();
void
toLast();


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.