Class Reference
IRIS for UNIX 2024.1.2
InterSystems: The power behind what matters   
Documentation  Search
  [USER] >  [%Library] >  [Iterator]
Private  Storage   

%Library.Iterator defines a standard interface for iterators. It is compatible with legacy iterators that extend %Iterator.AbstractIterator.

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 next. %GetNext is present for compatibility with %Iterator.AbstractIterator

Inventory

Parameters Properties Methods Queries Indices ForeignKeys Triggers
2 3


Summary

Properties
_hasNext _next

Methods
%ClassIsLatestVersion %ClassName %DispatchClassMethod %DispatchGetModified
%DispatchGetProperty %DispatchMethod %DispatchSetModified %DispatchSetMultidimProperty
%DispatchSetProperty %Extends %GetNext %GetParameter
%IsA %New %OriginalNamespace %PackageName
%SetModified hasNext next

Subclasses
%Iterator.AbstractIterator

Properties

• property _hasNext as %Boolean [ InitialExpression = 0 ];
True if "_next" contains the next member at the current iterator position.
• property _next as %Library.DynamicObject [ InitialExpression = $$$NULLOREF ];
This property holds the member of the set at the current iterator position.

Methods

• abstract method %GetNext(Output key As %RawString, Output value As %RawString) as %Integer
Present only for compatibility with %Iterator.AbstractIterator
• method hasNext() as %Boolean

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

• method next() as %Library.DynamicObject
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


Copyright (c) 2025 by InterSystems Corporation. Cambridge, Massachusetts, U.S.A. All rights reserved. Confidential property of InterSystems Corporation.