Class Reference
IRIS for UNIX 2024.1.2
|
|
Private
Storage
|
Definition of iterator methods that all our collections classes use to ensure consistency.
|
|
Methods | ||
---|---|---|
GetAt | GetNext | Next |
Subclasses | ||
---|---|---|
%Collection.AbstractArray | %Collection.AbstractList | %Library.RelationshipObject |
%Net.LDAP.Client.Entries | %Net.LDAP.Client.Entry | %Net.LDAP.Client.ValueList |
|
Finds and returns the value of the element associated with key.GetAt returns the value of the element associated with key or null string ("") if no element is found.
Finds and returns the value of the element at the location after key in the iteration. If key is a null string (""), it returns the value of the first element in the array.The value of key, which is passed by reference, is updated to the key value of the returned element or null string ("") if key is at the end of the array.
Finds and returns the key value of the element at the location following key in the iteration. If key is a null string (""), then Next returns the key value for the first element in the array.