ObjectType:jsonarray
Jump to navigation
Jump to search
Contents
Overview
jsonarray | |
Defined By | LavishScript |
Inherits | ObjectType:jsonvalue |
Reduces To | same as jsonvalue.AsString |
Variable Object Type | none |
Uses Sub-Types | no |
C/C++ Type | void * |
A jsonarray is a standard JSON array.
Members
- ... Get[#]: Gets a value stored within this object, by its index (1-based)
- ... Get[#,valueName2,...]: Gets a stored value multiple levels deep within jsonarrays and/or jsonobjects
- uint Size: Allocated capacity of the array
- uint Used: Total number of values currently in the array
Methods
- Clear: Clears all values from the array
- Set[#,json]: Sets a value within the array, to a new JSON value of any type, e.g. myJsonObject:Set[1,"{\"subValue\":12}"]
- GetIterator[jsoniterator]: Sets a jsoniterator to iterate this JSON array