Difference between revisions of "ObjectType:jsonarray"

From Lavish Software Wiki
Jump to navigation Jump to search
Line 7: Line 7:
 
* ... '''Get['''#''']''': Gets a value stored within this object, by its index (1-based)
 
* ... '''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
 
* ... '''Get['''#''','''valueName2''',...]''': Gets a stored value multiple levels deep within jsonarrays and/or jsonobjects
* [[ObjectType:uint|uint]] Size: Allocated capacity of the array
+
* [[ObjectType:uint|uint]] '''Size''': Allocated capacity of the array
* [[ObjectType:uint|uint]] Used: Total number of values currently in the array
+
* [[ObjectType:uint|uint]] '''Used''': Total number of values currently in the array
  
 
== Methods ==
 
== Methods ==

Revision as of 16:18, 8 July 2018

Overview

Object Type Vitals
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

See Also

LavishScript Object Types