Class Reference
IRIS for UNIX 2024.1.2
|
|
Private
Storage
|
%Library.Iterator defines a standard interface for iterators. It is compatible with legacy
iterators that extend
This interface supports three common code patterns.
set array = [0,1,2,3,4] set iterator = array.iterator() while iterator.hasNext() { set next = iterator.next() // do something with next.key and next.value }
set array = [0,1,2,3,4] set iterator = array.iterator() for { set next = iterator.next() quit:next="" // do something with next.key and next.value }
set array = [0,1,2,3,4] set iterator = array.iterator() for { quit:'iterator.%GetNext(.key,.value) // do something with key and value }
Implementors are expected to override
|
|
Properties | |
---|---|
_hasNext | _next |
Subclasses | |
---|---|
%Iterator.AbstractIterator |
|
True if"_next" contains the next member at the current iterator position.
This property holds the member of the set at the current iterator position.
|
Present only for compatibility with%Iterator.AbstractIterator
Return true if there is member if the iterator were to be advanced by invoking
next Returns false if the iterator is positioned at the end of the set
Advance the iterator to the next position and return the current member or, if the iterator's position is after the end of the set then null