rwlogo
SourcePro C++ 12.0

SourcePro® C++ API Reference Guide



   SourcePro C++
Documentation Home

RWDlistCollectablesIterator Class Reference
[RWCollectable-derived]

Traverses the linked-list from the first (head) to the last (tail) item. More...

#include <rw/dlistcol.h>

Inheritance diagram for RWDlistCollectablesIterator:
RWIterator

List of all members.

Public Member Functions

 RWDlistCollectablesIterator (RWDlistCollectables &s)
virtual RWCollectablefindNext (const RWCollectable *target)
virtual RWCollectablekey () const
virtual RWCollectableoperator() ()
virtual void reset ()
RWCollectablefindNextReference (const RWCollectable *e)
RWCollectableinsertAfterPoint (RWCollectable *a)
RWCollectableremove ()
RWCollectableremoveNext (const RWCollectable *target)
RWCollectableremoveNextReference (const RWCollectable *e)

Detailed Description

Iterator for class RWDlistCollectables. Traverses the linked-list from the first (head) to the last (tail) item. Functions are provided for moving in either direction.

As with all Rogue Wave iterators, 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 brings undefined results.

Synopsis

 #include <rw/dlistcol.h>
 RWDlistCollectables d;
 RWDlistCollectablesIterator it(d);

Persistence

None


Constructor & Destructor Documentation

RWDlistCollectablesIterator::RWDlistCollectablesIterator ( RWDlistCollectables s  )  [inline]

Constructs an RWDlistCollectablesIterator from an RWDlistCollectables. Immediately after construction, the position of the iterator is undefined.


Member Function Documentation

virtual RWCollectable* RWDlistCollectablesIterator::findNext ( const RWCollectable target  )  [inline, virtual]

Moves the iterator to the next item which isEqual() to the item pointed to by target and returns it. If no item is found, the function returns rwnil and the position of the iterator is undefined.

Implements RWIterator.

RWCollectable* RWDlistCollectablesIterator::findNextReference ( const RWCollectable e  )  [inline]

Moves the iterator to the next item which is identical to the item pointed to by e (that is, that has address e) and returns it. If no item is found, the function returns rwnil and the position of the iterator is undefined.

RWCollectable* RWDlistCollectablesIterator::insertAfterPoint ( RWCollectable a  )  [inline]

Inserts the item a after the current cursor position and returns the item. The cursor's position is unchanged.

virtual RWCollectable* RWDlistCollectablesIterator::key (  )  const [inline, virtual]

Returns the item at the current iterator position.

Implements RWIterator.

virtual RWCollectable* RWDlistCollectablesIterator::operator() (  )  [inline, virtual]

Advances the iterator and returns the next item, or rwnil if the end of the collection has been reached.

Implements RWIterator.

RWCollectable* RWDlistCollectablesIterator::remove (  )  [inline]

Removes and returns the item at the current cursor position. Afterwards, the iterator is positioned at the previous item in the list.

RWCollectable* RWDlistCollectablesIterator::removeNext ( const RWCollectable target  )  [inline]

Moves the iterator to the next item in the list which isEqual() to the item pointed to by target, removes it from the list and returns it. Afterwards, the iterator is positioned at the previous item in the list. If no item is found, the function returns rwnil and the position of the iterator is undefined.

RWCollectable* RWDlistCollectablesIterator::removeNextReference ( const RWCollectable e  )  [inline]

Moves iterator to the next item in the list which is identical to the item pointed to by e (that is, that has address e), removes it from the list and returns it. Afterwards, the iterator is positioned at the previous item in the list. If no item is found, the function returns rwnil and the position of the iterator is undefined.

virtual void RWDlistCollectablesIterator::reset (  )  [inline, virtual]

Resets the iterator. Afterwards, the position of the iterator is undefined.

Implements RWIterator.

 All Classes Functions Variables Typedefs Enumerations Enumerator Friends

© 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.