[Overview][Constants][Types][Classes][Procedures and functions][Index] |
Iterator callback for TJSONArray.Iterate
Source position: fpjson.pp line 344
type TJSONArrayIterator = procedure( |
Item: TJSONData; |
Data: TObject; |
var Continue: Boolean |
) of object; |
Item |
|
Current item |
Data |
|
extra data |
Continue |
|
Continue iterating or not ? |
TJSONArrayIterator is the procedural callback used by TJSONArray.Iterate to iterate over the values. Item is the current item in the iteration. Data is the data passed on when calling Iterate. The Continue parameter can be set to false to stop the iteration loop.
|
Iterate over all elements in the array |