[Overview][Constants][Types][Classes][Procedures and functions][Index] |
Iterate over all elements in the array
Source position: fpjson.pp line 399
public procedure TJSONArray.Iterate( |
Iterator: TJSONArrayIterator; |
Data: TObject |
); |
Iterator |
|
Iterator callback, called for each element in the array. |
Data |
|
Data item passed to the iterator with each call. |
Iterate iterates over all elements in the array, passing them one by one to the Iterator callback, together with the Data parameter. The iteration stops when all elements have been passed or when the iterator callback returned False in the Continue parameter.
|
Iterator callback for TJSONArray.Iterate |