TLO:listiterator

From the wonderful RedGuides Wiki

Holds the "listiterator" datatype

This TLO is added by MQ2Collections

Forms

Access to Types

Type Description
listiterator A listiterator implements a forward iterator over the list type. A forward iterator is an iterator that can only be incremented. Invoking Advance on the iterator will position the iterator on the next element in the list. Elements in a list are identified by position. The positions have ordinals in the range 0 to Count -1. If there is no next element, the iterator will be positioned on the end of the list and IsEnd will be true.

See also