Rogue Wave Views Foundation Package API Reference Guide |
Rogue Wave Views Documentation Home |
An unsafe iterator of lists. More...
#include <ilog/list.h>
Public Member Functions | |
IlListIteratorOf(NAME) (const IlListOf(NAME) &list) | |
Constructor. More... | |
IlBoolean | hasMoreElements () const |
Indicates that the enumeration can carry on. More... | |
TYPE | nextElement () |
Returns the next element in the list. More... | |
An unsafe iterator of lists.
Library: ilog
This class is generated by the macro IlDefineListOf(NAME, TYPE)
.
It allows the iteration on a list in a very simple manner. A typical use of this class is shown here:
This version of the class doesn't allow you to modify the list while you are iterating it. Use the class IlSafeListIteratorOf(NAME)
if you plan to modify the list during its iteration.
IlListOf(NAME)
, IlSafeListIteratorOf(NAME)
. IlListIteratorOf(NAME)::IlListIteratorOf(NAME) | ( | const IlListOf(NAME) & | list | ) |
Constructor.
Initializes a new iterator for the indicated list. The current position is set to the beginning of the list.
list | A reference to the iterated list. |
IlBoolean IlListIteratorOf(NAME)::hasMoreElements | ( | ) | const |
Indicates that the enumeration can carry on.
If this member function returns IlFalse
, you must not call nextElement()
.
IlTrue
if the list is still valid, and there are more elements to iterate. It returns IlFalse
if the list is invalid or if the iterator has reached the end of the list. TYPE IlListIteratorOf(NAME)::nextElement | ( | ) |
Returns the next element in the list.
This member function also make the iterator point to the next element of the list.
© Copyright 2016, Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave is a registered trademark of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.